From 2fdac8f23f3082d71f93381cd644befb76832542 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 29 Apr 2022 02:03:56 -0700 Subject: Missing newline in error call. --- pw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pw.c') diff --git a/pw.c b/pw.c index a8350b3..342e510 100644 --- a/pw.c +++ b/pw.c @@ -462,7 +462,7 @@ int main(int argc, char **argv) } if (maxlines <= 0 || maxlines > 1000) - error("%d is an unreasonable number of lines to display", maxlines); + error("%d is an unreasonable number of lines to display\n", maxlines); if ((circbuf = calloc(sizeof *circbuf, maxlines)) == 0) panic("out of memory"); -- cgit v1.2.3