summary refs log tree commit diff stats
path: root/linux-user/sh4/cpu_loop.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2018-07-06 12:51:27 -0300
committerLaurent Vivier <laurent@vivier.eu>2018-07-09 00:52:50 +0200
commit84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb (patch)
tree35b408c250d9eb916a3c615190c939f0011daece /linux-user/sh4/cpu_loop.c
parent8f0ea816435c0f6b7bcf8bd0f46f705ccca0316a (diff)
downloadfocaccia-qemu-84ca4fa99d7b6c83ce31e1e41300d55cb4e97dcb.tar.gz
focaccia-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.c2
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);
         }