1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-09-29 02:20:44 +03:00

eeshow/ext/diag.c (pfatal): forgot to add \n

This commit is contained in:
Werner Almesberger 2016-08-22 20:38:59 -03:00
parent bbd8c5507f
commit 9094de177d

View File

@ -48,6 +48,7 @@ void fatal(const char *fmt, ...)
va_start(ap, fmt); va_start(ap, fmt);
vfprintf(stderr, fmt, ap); vfprintf(stderr, fmt, ap);
va_end(ap); va_end(ap);
fprintf(stderr, "\n");
exit(1); /* @@@ for now ... */ exit(1); /* @@@ for now ... */
} }