]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
log.c: Minor cleanup.
authorSimon Ruderich <simon@ruderich.org>
Sun, 28 Jul 2013 10:20:44 +0000 (12:20 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 28 Jul 2013 10:20:44 +0000 (12:20 +0200)
src/log.c

index 02cadd200d7bc6dd8f5460f19435d11af16c4d67..05bd3dcea94eeb455112fb8747dc635a6f592401 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -45,7 +45,6 @@ void log_message(int level, const char *file, int line, const char *format, ...)
     (void)line;
 #endif
 
-    va_start(ap, format);
     fprintf(stdout,
 #ifdef DEBUG
             "%-12s:%-3d "
@@ -55,7 +54,8 @@ void log_message(int level, const char *file, int line, const char *format, ...)
             file, line,
 #endif
             level_string, (int)pthread_self());
+    va_start(ap, format);
     vfprintf(stdout, format, ap);
-    fprintf(stdout, "\n");
     va_end(ap);
+    fprintf(stdout, "\n");
 }