[PEFIXUP] Use vfprintf() with the va_args list. (#3598)
[reactos.git] / sdk / tools / pefixup.c
index 3ea6386..22d3d0c 100644 (file)
@@ -57,7 +57,7 @@ static void error(const char* message, ...)
     fprintf(stderr, "%s ERROR: '%s': ", g_ApplicationName, g_Target);
 
     va_start(args, message);
-    fprintf(stderr, message, args);
+    vfprintf(stderr, message, args);
     va_end(args);
 }