aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver/CommandLine
diff options
context:
space:
mode:
authorclick <none@none>2010-09-12 21:19:43 +0200
committerclick <none@none>2010-09-12 21:19:43 +0200
commitc4028111bdef9614eec7f1a15b3cf9eb6a632410 (patch)
treef32274ad083c12cd615983f4c49d69011319b548 /src/server/worldserver/CommandLine
parent9bf50057a3590f36d2f6b5090bd16d9762e831f5 (diff)
Core: Remove some more warnings (initialization sequence in Unit.cpp and a non-initalized variable in worldserver)
--HG-- branch : trunk
Diffstat (limited to 'src/server/worldserver/CommandLine')
-rw-r--r--src/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 0a5b16563f5..15618936013 100644
--- a/src/server/worldserver/CommandLine/CliRunnable.cpp
+++ b/src/server/worldserver/CommandLine/CliRunnable.cpp
@@ -106,7 +106,7 @@ void utf8print(void* /*arg*/, const char* str)
printf(temp_buf);
#else
{
- va_list v;
+ va_list v = NULL;
vprintf(str, v);
va_end(v);
fflush(stdout);