Fix Heap{Re,}Alloc

This commit is contained in:
Simon Lindholm
2022-07-26 12:38:21 +02:00
committed by Mark Street
parent fa6c98406e
commit ff947fb707
2 changed files with 273 additions and 105 deletions

View File

@@ -17,7 +17,7 @@ void wibo::debug_log(const char *fmt, ...) {
va_list args;
va_start(args, fmt);
if (wibo::debugEnabled)
vprintf(fmt, args);
vfprintf(stderr, fmt, args);
va_end(args);
}