From 7cb8758351b7b8765f06867811e10213036a3c41 Mon Sep 17 00:00:00 2001 From: Jonathan Amery Date: Mon, 6 Oct 2014 13:19:14 +0100 Subject: [PATCH] Added missing \n from error message --- cprogs/acctdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cprogs/acctdump.c b/cprogs/acctdump.c index 1331049..ed60661 100644 --- a/cprogs/acctdump.c +++ b/cprogs/acctdump.c @@ -293,7 +293,7 @@ static void processfile(FILE *file, const char *filename) { pos= ftell(file); if (pos==-1) { perror(filename); exit(8); } if (pos % sizeof(as)) { fprintf(stderr, "%s: File size is not an integral number " - "of accounting records", filename); + "of accounting records\n", filename); exit(8); } for (;;) { -- 2.30.2