qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-trivial] [PATCH] arm_gic: Send dbg msgs to stderr not stdout


From: Peter A. G. Crosthwaite
Subject: [Qemu-trivial] [PATCH] arm_gic: Send dbg msgs to stderr not stdout
Date: Mon, 18 Jun 2012 11:00:18 +1000

Signed-off-by: Peter A. G. Crosthwaite <address@hidden>
---
 hw/arm_gic.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/arm_gic.c b/hw/arm_gic.c
index 72298b4..c78d58e 100644
--- a/hw/arm_gic.c
+++ b/hw/arm_gic.c
@@ -35,7 +35,7 @@
 
 #ifdef DEBUG_GIC
 #define DPRINTF(fmt, ...) \
-do { printf("arm_gic: " fmt , ## __VA_ARGS__); } while (0)
+do { fprintf(stderr, "arm_gic: " fmt , ## __VA_ARGS__); } while (0)
 #else
 #define DPRINTF(fmt, ...) do {} while(0)
 #endif
-- 
1.7.3.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]