diff options
Diffstat (limited to 'src/mess/tools/floptool/main.c')
-rw-r--r-- | src/mess/tools/floptool/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/tools/floptool/main.c b/src/mess/tools/floptool/main.c index 157835b4f48..15d3b904667 100644 --- a/src/mess/tools/floptool/main.c +++ b/src/mess/tools/floptool/main.c @@ -66,7 +66,7 @@ void CLIB_DECL ATTR_PRINTF(1,2) logerror(const char *format, ...) { va_list arg; va_start(arg, format); - printf(format, arg); + vprintf(format, arg); va_end(arg); } |