fix warnings

This commit is contained in:
Steve Checkoway
2004-02-24 08:00:04 +00:00
parent f48728e003
commit 03499669bd
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
void IncorrectActorParametersWarning( const ParsedCommand &command, int iMaxIndexAccessed )
{
const CString sError = ssprintf( "Actor::HandleCommand: Wrong number of parameters in command '%s'. Expected %d but there are %u.",
command.GetOriginalCommandString().c_str(), iMaxIndexAccessed+1, command.vTokens.size() );
command.GetOriginalCommandString().c_str(), iMaxIndexAccessed+1, unsigned(command.vTokens.size()) );
LOG->Warn( sError );
HOOKS->MessageBoxOK( sError );
}