aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 15618936013..0a5b16563f5 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 = NULL;
+ va_list v;
vprintf(str, v);
va_end(v);
fflush(stdout);