Use format strings where required (script parser)

Should fix #178

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@6597 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2009-02-09 02:53:52 +00:00
parent c599637530
commit 728c68b81e
1 changed files with 4 additions and 4 deletions

View File

@ -745,7 +745,7 @@ static CODE_ERROR scriptCodeFunction(FUNC_SYMBOL *psFSymbol, // The function be
{
debug(LOG_ERROR, "scriptCodeFunction: Type mismatch for paramter %d (%d/%d)", i, psFSymbol->aParams[i], psPBlock->aParams[i]);
snprintf(aErrorString, sizeof(aErrorString), "Type mismatch for paramter %d", i);
scr_error(aErrorString);
scr_error("%s", aErrorString);
typeError = true;
}
}
@ -759,7 +759,7 @@ static CODE_ERROR scriptCodeFunction(FUNC_SYMBOL *psFSymbol, // The function be
if (psFSymbol->numParams != psPBlock->numParams)
{
snprintf(aErrorString, sizeof(aErrorString), "Expected %d parameters", psFSymbol->numParams);
scr_error(aErrorString);
scr_error("%s", aErrorString);
*ppsCBlock = NULL;
return CE_PARSE;
}
@ -913,7 +913,7 @@ static CODE_ERROR scriptCodeCallbackParams(
if (!interpCheckEquiv(psCBSymbol->aParams[i], psPBlock->aParams[i]))
{
snprintf(aErrorString, sizeof(aErrorString), "Type mismatch for paramter %d", i);
scr_error(aErrorString);
scr_error("%s", aErrorString);
typeError = true;
}
}
@ -928,7 +928,7 @@ static CODE_ERROR scriptCodeCallbackParams(
else if (psCBSymbol->numParams != psPBlock->numParams)
{
snprintf(aErrorString, sizeof(aErrorString), "Expected %d parameters", psCBSymbol->numParams);
scr_error(aErrorString);
scr_error("%s", aErrorString);
*ppsTDecl = NULL;
return CE_PARSE;
}