From c3f29a3302b4c13ab95f8f87813e60bd7d69851c Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Sat, 25 Jun 2022 14:22:04 +0200 Subject: [PATCH] Osmo-CC: Minor compiler warning fix --- src/libdebug/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libdebug/debug.c b/src/libdebug/debug.c index 63e2687..bc3ac12 100755 --- a/src/libdebug/debug.c +++ b/src/libdebug/debug.c @@ -150,7 +150,7 @@ void _printdebug(const char *file, const char __attribute__((unused)) *function, int s = sizeof(buffer) - 1; const char *p; va_list args; - int w, h; + int w, h = 0; // make GCC happy if (debuglevel > level) return;