diff options
author | Philippe Mathieu-Daudé | 2018-07-06 17:51:27 +0200 |
---|---|---|
committer | Laurent Vivier | 2018-07-09 00:52:50 +0200 |
commit | 84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb (patch) | |
tree | 35b408c250d9eb916a3c615190c939f0011daece /linux-user/sh4/cpu_loop.c | |
parent | linux-user: Do not report "syscall not implemented" by default (diff) | |
download | qemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.tar.gz qemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.tar.xz qemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.zip |
linux-user: Report error message on stderr, rather than stdout
Code change produced with:
git ls-files linux-user | \
xargs sed -i -E 's/(\s+)printf\s*\(("Unhandled.*)\);/\1fprintf(stderr, \2);/g'
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20180706155127.7483-4-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/sh4/cpu_loop.c')
-rw-r--r-- | linux-user/sh4/cpu_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/sh4/cpu_loop.c b/linux-user/sh4/cpu_loop.c index 418833ea25..fdd348170b 100644 --- a/linux-user/sh4/cpu_loop.c +++ b/linux-user/sh4/cpu_loop.c @@ -84,7 +84,7 @@ void cpu_loop(CPUSH4State *env) arch_interrupt = false; break; default: - printf ("Unhandled trap: 0x%x\n", trapnr); + fprintf(stderr, "Unhandled trap: 0x%x\n", trapnr); cpu_dump_state(cs, stderr, fprintf, 0); exit(EXIT_FAILURE); } |