1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

Fix several format errors detected via vararg-template voodoo

This commit is contained in:
2013-12-16 18:36:34 -08:00
parent 09cc4b8259
commit 56507c5219
7 changed files with 14 additions and 10 deletions

View File

@ -156,7 +156,7 @@ bool pfConsoleEngine::PrintCmdHelp( char *name, void (*PrintFn)( const char *
PrintFn(" Subgroups:");
for( subGrp = group->GetFirstSubGroup(); subGrp != nil; subGrp = subGrp->GetNext() )
{
PrintFn(plString::Format(" %s", subGrp).c_str());
PrintFn(plString::Format(" %s", subGrp->GetName()).c_str());
}
PrintFn(" Commands:");
for( cmd = group->GetFirstCommand(); cmd != nil; cmd = cmd->GetNext() )