This commit is contained in:
Wolfgang Hottgenroth 2020-09-03 16:03:50 +02:00
parent d65b0b1203
commit 0371c2174e
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -42,7 +42,7 @@ void msleep(uint32_t t) {
void log(const char *format, va_list ap) {
va_start(ap, format);
if (verbose || overwriteVerbose) {
if (verbose) {
vfprintf(stderr, format, ap);
}
va_end(ap);