From 9094de177d4a59f11b4b3812127d50bc8dd0f431 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Mon, 22 Aug 2016 20:38:59 -0300 Subject: [PATCH] eeshow/ext/diag.c (pfatal): forgot to add \n --- eeshow/misc/diag.c | 1 + 1 file changed, 1 insertion(+) diff --git a/eeshow/misc/diag.c b/eeshow/misc/diag.c index b4224b0..66eb399 100644 --- a/eeshow/misc/diag.c +++ b/eeshow/misc/diag.c @@ -48,6 +48,7 @@ void fatal(const char *fmt, ...) va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); + fprintf(stderr, "\n"); exit(1); /* @@@ for now ... */ }