diff options
author | Riccardo Magliocchetti <riccardo.magliocchetti@gmail.com> | 2010-05-19 18:49:30 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-05-28 22:08:54 +0200 |
commit | 82f24fccaa9ef21e369d77e32bae20bcdc915947 (patch) | |
tree | d1680ac0e9c3755c471bca586ea8f5c2282a0dad | |
parent | 3c05613a6a51da833105c1bf3db4917d917f5a3a (diff) |
Fix hw/gt64xxx.c compilation with DEBUG defined
Use TARGET_FMT_plx as format placeholder for target_phys_addr_t
Signed-off-by: Riccardo Magliocchetti <riccardo.magliocchetti@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r-- | hw/gt64xxx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/gt64xxx.c b/hw/gt64xxx.c index 55971b9c33..7691e1d48e 100644 --- a/hw/gt64xxx.c +++ b/hw/gt64xxx.c @@ -276,7 +276,7 @@ static void gt64120_isd_mapping(GT64120State *s) check_reserved_space(&start, &length); length = 0x1000; /* Map new address */ - DPRINTF("ISD: %x@%x -> %x@%x, %x\n", s->ISD_length, s->ISD_start, + DPRINTF("ISD: "TARGET_FMT_plx"@"TARGET_FMT_plx" -> "TARGET_FMT_plx"@"TARGET_FMT_plx", %x\n", s->ISD_length, s->ISD_start, length, start, s->ISD_handle); s->ISD_start = start; s->ISD_length = length; |