Added support for parsing argument lists.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1029 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2007-02-16 22:33:59 +00:00
parent 2e2a440db2
commit dc4ec766ca
5 changed files with 3247 additions and 6 deletions

View File

@@ -246,12 +246,12 @@ void FLMAPI f_logError(
if( pszFileName)
{
f_logPrintf( pLogMsg,
"Error %s: %e, File=%s, Line=%d.",
"Error %s: %e, File=%s, Line=%d.\n",
pszDoing, rc, pszFileName, (int)iLineNumber);
}
else
{
f_logPrintf( pLogMsg, "Error %s: %e.", pszDoing, rc);
f_logPrintf( pLogMsg, "Error %s: %e.\n", pszDoing, rc);
}
f_endLogMessage( &pLogMsg);