diff options
author | Adam Lackorzynski <adam@os.inf.tu-dresden.de> | 2010-04-01 23:45:25 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-04-08 21:44:38 +0200 |
commit | 0534163f5bcf4f4f948946a34bc6023de4b8378a (patch) | |
tree | 5c5bf4a24309800efcdf76a3af44b9ec76273fe1 /hw/debugcon.c | |
parent | e5c15efff67d0cda978d726a11e5996a88f29b6f (diff) |
Debugcon: Fix debugging printf
Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'hw/debugcon.c')
-rw-r--r-- | hw/debugcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |