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:
parent
a1b86f3037
commit
6e23aa5a05
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue