summary refs log tree commit diff stats
path: root/hw/ioapic.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2012-03-19 13:37:41 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2012-03-19 13:37:41 -0500
commitb85a4ec8a7ce348f3f385a53df4e418f2f54c182 (patch)
treec880041590cad24ccb224b3a9fd4c059c845e3e3 /hw/ioapic.c
parentdfebfcf02f74ed47b61841037d7eda1baffb4d6e (diff)
parentb71706d122838d9656e1a6dae80e22401babdf37 (diff)
downloadfocaccia-qemu-b85a4ec8a7ce348f3f385a53df4e418f2f54c182.tar.gz
focaccia-qemu-b85a4ec8a7ce348f3f385a53df4e418f2f54c182.zip
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
* stefanha/trivial-patches:
  qemu-ga: for w32, fix leaked handle ov.hEvent in ga_channel_write()
  ioapic: fix build with DEBUG_IOAPIC
  .gitignore: add qemu-bridge-helper and option rom build products
  cleanup obsolete typedef
  monitor: Remove unused bool field 'qapi' in mon_cmd_t struct
  ds1338: Add missing break statement
  vnc: Fix packed boolean struct members
  Remove type field in ModuleEntry as it's not used
Diffstat (limited to 'hw/ioapic.c')
-rw-r--r--hw/ioapic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ioapic.c b/hw/ioapic.c
index 3fee0114d9..e2e4796bb5 100644
--- a/hw/ioapic.c
+++ b/hw/ioapic.c
@@ -195,7 +195,7 @@ ioapic_mem_write(void *opaque, target_phys_addr_t addr, uint64_t val,
         if (size != 4) {
             break;
         }
-        DPRINTF("write: %08x = %08x\n", s->ioregsel, val);
+        DPRINTF("write: %08x = %08" PRIx64 "\n", s->ioregsel, val);
         switch (s->ioregsel) {
         case IOAPIC_REG_ID:
             s->id = (val >> IOAPIC_ID_SHIFT) & IOAPIC_ID_MASK;