From 0c422a910e5caeabbd1dfe64322914db614579ee Mon Sep 17 00:00:00 2001 From: Frederic Marchal Date: Mon, 5 Jan 2015 13:46:53 +0100 Subject: [PATCH] Add missing line break The line break was printed on stdout instead of stderr. The debug output was therefore broken. --- log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.c b/log.c index a72c52b..c2b8d37 100644 --- a/log.c +++ b/log.c @@ -1654,7 +1654,7 @@ int main(int argc,char *argv[]) if(debug) { debuga(_("Period: %s"),period.text); - putchar('\n'); + debuga_more("\n"); } if(fp_denied) -- 2.47.3