aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Log.cpp')
-rw-r--r--src/shared/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp
index a52ca767a03..3d7d654a62a 100644
--- a/src/shared/Log.cpp
+++ b/src/shared/Log.cpp
@@ -837,7 +837,7 @@ void Log::outChat( const char * str, ... )
outTimestamp(chatLogfile);
va_list ap;
va_start(ap, str);
- vfprintf(chatLogfile, str, ap);
+ fprintf(chatLogfile, str, ap);
fprintf(chatLogfile, "\n" );
fflush(chatLogfile);
va_end(ap);