diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-13 13:43:35 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-12-17 17:33:48 +0100 |
commit | c30f0d182f82d51ca5de79814860e5942e257b59 (patch) | |
tree | 35a5cf83a6cd822bd66063f334498d3c636de294 /target-xtensa/xtensa-semi.c | |
parent | b81b971c7a87261f23359529cdd9d86fac57633f (diff) |
xtensa: avoid "naked" qemu_log
Cc: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-xtensa/xtensa-semi.c')
-rw-r--r-- | target-xtensa/xtensa-semi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-xtensa/xtensa-semi.c b/target-xtensa/xtensa-semi.c index 16e9d8c7b8..384d9c2ebe 100644 --- a/target-xtensa/xtensa-semi.c +++ b/target-xtensa/xtensa-semi.c @@ -313,7 +313,7 @@ void HELPER(simcall)(CPUXtensaState *env) break; default: - qemu_log("%s(%d): not implemented\n", __func__, regs[2]); + qemu_log_mask(LOG_GUEST_ERROR, "%s(%d): not implemented\n", __func__, regs[2]); regs[2] = -1; regs[3] = TARGET_ENOSYS; break; |