From patchwork Thu Apr 1 21:45:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Debugcon: Fix debugging printf From: Adam Lackorzynski X-Patchwork-Id: 49246 Message-Id: <20100401214525.GB23153@os.inf.tu-dresden.de> To: qemu-devel@nongnu.org Date: Thu, 1 Apr 2010 23:45:25 +0200 Signed-off-by: Adam Lackorzynski --- hw/debugcon.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/debugcon.c b/hw/debugcon.c index d549091..5ee6821 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;