mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04: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() )
|
||||
|
@ -50,6 +50,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
#include <string>
|
||||
#include "hsTemplates.h"
|
||||
#include "plFileSystem.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
|
||||
#include "pyGlueHelpers.h"
|
||||
|
Reference in New Issue
Block a user