From 0534163f5bcf4f4f948946a34bc6023de4b8378a Mon Sep 17 00:00:00 2001 From: Adam Lackorzynski Date: Thu, 1 Apr 2010 23:45:25 +0200 Subject: [PATCH] Debugcon: Fix debugging printf Signed-off-by: Adam Lackorzynski Signed-off-by: Aurelien Jarno --- hw/debugcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/debugcon.c b/hw/debugcon.c index d549091658..5ee6821206 100644 --- a/hw/debugcon.c +++ b/hw/debugcon.c @@ -60,7 +60,7 @@ static uint32_t debugcon_ioport_read(void *opaque, uint32_t addr) DebugconState *s = opaque; #ifdef DEBUG_DEBUGCON - printf("debugcon: read addr=0x%04x\n", addr, val); + printf("debugcon: read addr=0x%04x\n", addr); #endif return s->readback;