diff options
Diffstat (limited to 'common/util.cpp')
-rw-r--r-- | common/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp index 170e972c4f..5f5e31aa93 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -480,7 +480,7 @@ void NORETURN error(const char *s, ...) { #ifndef __PLAYSTATION2__ fputs(buf_output, stderr); #else - fprintf(stderr, "%s\n", buf_output); + fprintf(stderr, "%s", buf_output); #endif // Unless this error -originated- within the debugger itself, we |