From fc1fbac82a90ed348e21cc8b536eb4facc4c4aa3 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Thu, 8 Oct 2009 21:15:58 +0000 Subject: [PATCH] Get rid of a few warnings. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3207 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/log/uqmlog.c | 6 ++++++ 1 file changed, 6 insertions(+) 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 }