aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver/CommandLine
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2011-03-08 19:11:02 +0100
committerShauren <shauren.trinity@gmail.com>2011-03-08 19:11:02 +0100
commit9710c41a40a311d363304853b33d0fee3f751383 (patch)
tree8d98282b74329fa225af85b42678d6ffbddb1da7 /src/server/worldserver/CommandLine
parentcbbfb52ca766cb3b9e8cb2a6e9cf04f42d356ab1 (diff)
More warning fixes
Diffstat (limited to 'src/server/worldserver/CommandLine')
-rwxr-xr-xsrc/server/worldserver/CommandLine/CliRunnable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/worldserver/CommandLine/CliRunnable.cpp b/src/server/worldserver/CommandLine/CliRunnable.cpp
index a7775291834..957191c693a 100755
--- a/src/server/worldserver/CommandLine/CliRunnable.cpp
+++ b/src/server/worldserver/CommandLine/CliRunnable.cpp
@@ -600,14 +600,14 @@ void CliRunnable::run()
if (!*command_str)
{
- #if PLATFORM == WINDOWS
+ #if PLATFORM == PLATFORM_WINDOWS
printf("TC>");
#endif
continue;
}
std::string command;
- if (!consoleToUtf8(command_str,command)) // convert from console encoding to utf8
+ if (!consoleToUtf8(command_str, command)) // convert from console encoding to utf8
{
#if PLATFORM == PLATFORM_WINDOWS
printf("TC>");