Output newline after debugging message

This commit is contained in:
des 2000-05-25 16:50:08 +00:00
parent 59892af9b1
commit 969e1c4e0d

View File

@ -157,6 +157,7 @@ _fetch_info(char *fmt, ...)
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fputc('\n', stderr);
}