Fixing some compile warnings in C++

--HG--
extra : source : 84601b0b128cb508e13a1ae23fd648acc52990c8
This commit is contained in:
Patrick Plenefisch
2014-05-02 17:52:49 -04:00
parent 1c943ff6f0
commit 848a043f99
9 changed files with 11 additions and 23 deletions

View File

@@ -16,7 +16,7 @@ PrintCommand::PrintCommand(const char *message) :
void PrintCommand::Initialize()
{
printf(m_message.c_str());
printf("%s", m_message.c_str());
}
void PrintCommand::Execute()