diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-03-08 19:11:02 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-03-08 19:11:02 +0100 |
| commit | 9710c41a40a311d363304853b33d0fee3f751383 (patch) | |
| tree | 8d98282b74329fa225af85b42678d6ffbddb1da7 /src/server/worldserver/CommandLine | |
| parent | cbbfb52ca766cb3b9e8cb2a6e9cf04f42d356ab1 (diff) | |
More warning fixes
Diffstat (limited to 'src/server/worldserver/CommandLine')
| -rwxr-xr-x | src/server/worldserver/CommandLine/CliRunnable.cpp | 4 |
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>"); |
