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:
@ -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() )
|
||||
|
Reference in New Issue
Block a user