2
3
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:
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() )

View File

@ -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"