diff options
author | 2014-04-03 20:52:20 +0000 | |
---|---|---|
committer | 2014-04-03 20:52:20 +0000 | |
commit | e3e6f6143a19d33ffd197566c670a5dd9f24d222 (patch) | |
tree | 8ae106c1b4d1f1801f124f6bbafab12ed9236f75 /src/mess/tools/floptool/main.c | |
parent | b24bcf916378ae081137b9687cef58a39d41f122 (diff) |
fixed logerror() in floptool and imgtool (nw)
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); } |