Get rid of warning of wrong argument types.

Re #307.

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3218 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 248f4e406a384b370d91cbab6ba79ffeaa531848
Former-commit-id: 62b06bd81d6280dcd97454443d3a6d4b8aed65a3
This commit is contained in:
kmetykog 2011-01-01 18:26:44 +00:00
parent a1b86f3037
commit 6e23aa5a05

View file

@ -299,7 +299,7 @@ TGF_API void GfLogMessage(int nLevel, const char *pszFmt, ...)
if (nLevel >= gfLogFatal && nLevel <= gfLogDebug)
fprintf(gfLogStream, "%s %.7s ", gfLogLevelNames[nLevel], pszClock);
else
fprintf(gfLogStream, "%s Level%d ", nLevel, pszClock);
fprintf(gfLogStream, "%s Level%d ", pszClock, nLevel);
free(pszClock);
}
va_list vaArgs;