Osmo-CC: Minor compiler warning fix

This commit is contained in:
Andreas Eversberg 2022-06-25 14:22:04 +02:00
parent f4aa9b79bb
commit c3f29a3302
1 changed files with 1 additions and 1 deletions

View File

@ -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;