aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver/CommandLine
diff options
context:
space:
mode:
authorSpp <spp@jorge.gr>2011-12-15 11:12:15 +0100
committerSpp <spp@jorge.gr>2011-12-15 11:12:15 +0100
commitd59c5e627fd023d3767bd8eb3e1eb4384d971bde (patch)
tree7c75326aed5ad6bb783bd8b7f1696c04a539a5fc /src/server/worldserver/CommandLine
parente504fc88d6a32e66875934d9c6a745f096335042 (diff)
Fix warnings
Diffstat (limited to 'src/server/worldserver/CommandLine')
-rwxr-xr-xsrc/server/worldserver/CommandLine/CliRunnable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/worldserver/CommandLine/CliRunnable.cpp b/src/server/worldserver/CommandLine/CliRunnable.cpp
index 564f6028eca..61352521d9f 100755
--- a/src/server/worldserver/CommandLine/CliRunnable.cpp
+++ b/src/server/worldserver/CommandLine/CliRunnable.cpp
@@ -104,7 +104,7 @@ void utf8print(void* /*arg*/, const char* str)
printf(temp_buf);
#else
{
- printf(str);
+ printf("%s", str);
fflush(stdout);
}
#endif