From 738922fb822650c6920f24ed6777b2681e5f3e9c Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Wed, 28 Nov 2007 14:06:34 +0000 Subject: [PATCH] Append newline after each log line on stderr --- aux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/aux.c b/aux.c index 5a8c72f..4906a31 100644 --- a/aux.c +++ b/aux.c @@ -100,6 +100,7 @@ void cgiDebugOutput (int level, char *format, ...) break; case 1: vfprintf (stderr, format, args); + printf ("\n"); break; case 2: vsyslog (LOG_DEBUG, format, args); -- 2.20.1