From 8f25becb220b321f0e9bd4b766ae7085a0335466 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 28 Jul 2013 12:20:44 +0200 Subject: [PATCH] log.c: Minor cleanup. --- src/log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/log.c b/src/log.c index 02cadd2..05bd3dc 100644 --- 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"); } -- 2.44.1