This commit is contained in:
2020-09-03 16:08:29 +02:00
parent ff515e202a
commit 5b6a9fa1ad

View File

@ -41,6 +41,7 @@ void msleep(uint32_t t) {
void infolog(const char *format, ...) { void infolog(const char *format, ...) {
va_list ap;
va_start(ap, format); va_start(ap, format);
if (verbose) { if (verbose) {
vfprintf(stderr, format, ap); vfprintf(stderr, format, ap);
@ -49,6 +50,7 @@ void infolog(const char *format, ...) {
} }
void errlog(const char *format, ...) { void errlog(const char *format, ...) {
va_list ap;
va_start(ap, format); va_start(ap, format);
vfprintf(stderr, format, ap); vfprintf(stderr, format, ap);
va_end(ap); va_end(ap);