diff --git a/sc2/src/sc2code/libs/log/uqmlog.c b/sc2/src/sc2code/libs/log/uqmlog.c index 74a51513a..98e71e82a 100644 --- a/sc2/src/sc2code/libs/log/uqmlog.c +++ b/sc2/src/sc2code/libs/log/uqmlog.c @@ -348,6 +348,9 @@ displayBox (const char *title, bool isError, const char *msg) static void displayBox (const char *title, bool isError, const char *msg) { + (void) title; + (void) isError; + (void) msg; // do something here } @@ -356,6 +359,9 @@ displayBox (const char *title, bool isError, const char *msg) static void displayBox (const char *title, bool isError, const char *msg) { + (void) title; + (void) isError; + (void) msg; // do nothing here }