From 3da2c85181849571d62270ddf86306ea5e0d7482 Mon Sep 17 00:00:00 2001 From: Antti-Juhani Kaijanaho Date: Fri, 8 Jun 2012 22:45:31 +0300 Subject: lib/msg.c (msg_primitive): Write the period before the newline, not after! Signed-off-by: Antti-Juhani Kaijanaho --- lib/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/msg.c') diff --git a/lib/msg.c b/lib/msg.c index 2216413..b9554fb 100644 --- a/lib/msg.c +++ b/lib/msg.c @@ -1,5 +1,5 @@ /* grep-dctrl - grep Debian control files - Copyright © 1999, 2004, 2008 Antti-Juhani Kaijanaho + Copyright © 1999, 2004, 2008, 2012 Antti-Juhani Kaijanaho This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -100,5 +100,5 @@ msg_primitive(const char *fname, int line, const char *fmt, va_list ap) fprintf(stderr, "%s: %s: ", get_progname(), fname); } vfprintf(stderr, fmt, ap); - fputs("\n.", stderr); + fputs(".\n", stderr); } -- cgit v1.2.3