diff options
-rw-r--r-- | engines/hugo/util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/hugo/util.h b/engines/hugo/util.h index aa58c5e2f1..d4867d2682 100644 --- a/engines/hugo/util.h +++ b/engines/hugo/util.h @@ -52,11 +52,11 @@ namespace Utils { int firstBit(byte data); int lastBit(byte data); void reverseByte(byte *data); -void Warn(bool technote, const char *format, ...); -void Error(int code, const char *format, ...); +void Warn(bool technote, const char *format, ...) GCC_PRINTF(2, 3); +void Error(int code, const char *format, ...); // FIXME GCC_PRINTF(2, 3); void gameOverMsg(); -// void Debug_out(char *format, ...); -char *Box(box_t, const char *, ...); +// void Debug_out(char *format, ...) GCC_PRINTF(1, 2); +char *Box(box_t, const char *, ...); // FIXME GCC_PRINTF(2, 3); } } // Namespace Hugo |