提交 a680f7e7 编写于 作者: P Peter Maydell 提交者: Gerd Hoffmann

hw/qxl: Fix format string errors

Fix format string errors causing compile failure on 32 bit hosts
when spice is enabled.
Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
上级 7b6c7369
...@@ -224,7 +224,7 @@ void qxl_log_command(PCIQXLDevice *qxl, const char *ring, QXLCommandExt *ext) ...@@ -224,7 +224,7 @@ void qxl_log_command(PCIQXLDevice *qxl, const char *ring, QXLCommandExt *ext)
if (!qxl->cmdlog) { if (!qxl->cmdlog) {
return; return;
} }
fprintf(stderr, "%ld qxl-%d/%s:", qemu_get_clock_ns(vm_clock), fprintf(stderr, "%" PRId64 " qxl-%d/%s:", qemu_get_clock_ns(vm_clock),
qxl->id, ring); qxl->id, ring);
fprintf(stderr, " cmd @ 0x%" PRIx64 " %s%s", ext->cmd.data, fprintf(stderr, " cmd @ 0x%" PRIx64 " %s%s", ext->cmd.data,
qxl_name(qxl_type, ext->cmd.type), qxl_name(qxl_type, ext->cmd.type),
......
...@@ -959,7 +959,7 @@ static void qxl_add_memslot(PCIQXLDevice *d, uint32_t slot_id, uint64_t delta, ...@@ -959,7 +959,7 @@ static void qxl_add_memslot(PCIQXLDevice *d, uint32_t slot_id, uint64_t delta,
memslot.generation = d->rom->slot_generation = 0; memslot.generation = d->rom->slot_generation = 0;
qxl_rom_set_dirty(d); qxl_rom_set_dirty(d);
dprint(d, 1, "%s: slot %d: host virt 0x%" PRIx64 " - 0x%" PRIx64 "\n", dprint(d, 1, "%s: slot %d: host virt 0x%lx - 0x%lx\n",
__FUNCTION__, memslot.slot_id, __FUNCTION__, memslot.slot_id,
memslot.virt_start, memslot.virt_end); memslot.virt_start, memslot.virt_end);
...@@ -1090,8 +1090,8 @@ static void qxl_set_mode(PCIQXLDevice *d, int modenr, int loadvm) ...@@ -1090,8 +1090,8 @@ static void qxl_set_mode(PCIQXLDevice *d, int modenr, int loadvm)
.mem = devmem + d->shadow_rom.draw_area_offset, .mem = devmem + d->shadow_rom.draw_area_offset,
}; };
dprint(d, 1, "%s: mode %d [ %d x %d @ %d bpp devmem 0x%lx ]\n", __FUNCTION__, dprint(d, 1, "%s: mode %d [ %d x %d @ %d bpp devmem 0x%" PRIx64 " ]\n",
modenr, mode->x_res, mode->y_res, mode->bits, devmem); __func__, modenr, mode->x_res, mode->y_res, mode->bits, devmem);
if (!loadvm) { if (!loadvm) {
qxl_hard_reset(d, 0); qxl_hard_reset(d, 0);
} }
...@@ -1229,7 +1229,7 @@ async_common: ...@@ -1229,7 +1229,7 @@ async_common:
break; break;
case QXL_IO_LOG: case QXL_IO_LOG:
if (d->guestdebug) { if (d->guestdebug) {
fprintf(stderr, "qxl/guest-%d: %ld: %s", d->id, fprintf(stderr, "qxl/guest-%d: %" PRId64 ": %s", d->id,
qemu_get_clock_ns(vm_clock), d->ram->log_buf); qemu_get_clock_ns(vm_clock), d->ram->log_buf);
} }
break; break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册