1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2025-04-21 12:27:27 +03:00

eeshow/diag.c (warning): don't require user to supply newline

This commit is contained in:
Werner Almesberger
2016-08-22 05:02:09 -03:00
parent 3c8c7ef6e1
commit 1812d1af86
3 changed files with 13 additions and 12 deletions

View File

@@ -70,6 +70,7 @@ void warning(const char *fmt, ...)
fprintf(stderr, "warning: ");
vfprintf(stderr, fmt, ap);
va_end(ap);
fprintf(stderr, "\n");
}