Fix two spelling errors found by Debian scripts. Closes ticket:1010

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@8300 4a71c877-e1ca-e34f-864e-861f7616d084
master
Per Inge Mathisen 2009-10-18 12:30:31 +00:00 committed by Git SVN Gateway
parent 6a09d348af
commit 6e27d99815
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ static void iV_initializeGLC(void)
}
else
{
debug(LOG_NEVER, "Succesfully initialized. _glcContext = %d", _glcContext);
debug(LOG_NEVER, "Successfully initialized. _glcContext = %d", _glcContext);
}
glcContext(_glcContext);

View File

@ -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);
snprintf(aErrorString, sizeof(aErrorString), "Type mismatch for parameter %d", i);
scr_error("%s", aErrorString);
typeError = true;
}