Fixed various g++ warnings ("format not a string literal and no format arguments").

svn-id: r35096
This commit is contained in:
Johannes Schickel 2008-11-16 20:20:31 +00:00
parent e1fdb1f882
commit 2ef8a32a01
12 changed files with 23 additions and 23 deletions

View file

@ -54,7 +54,7 @@ void debugC(int channel, const char *s, ...) {
vsnprintf(buf, STRINGBUFLEN, s, va);
va_end(va);
debug(buf);
debug("%s", buf);
}
ScummDebugger::ScummDebugger(ScummEngine *s)