[Qemu-devel] [PATCH] hw/qxl: fir build break with newer spice

2011-08-09 Thread Alon Levy
ioport_write's val was changed from uint32_t to uint64_t, this broke two printfs. Use PRId64 instead of %d. Signed-off-by: Alon Levy al...@redhat.com --- hw/qxl.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/qxl.c b/hw/qxl.c index db7ae7a..2335e4b 100644 ---

Re: [Qemu-devel] [PATCH] hw/qxl: fir build break with newer spice

2011-08-09 Thread Alon Levy
On Tue, Aug 09, 2011 at 03:21:15PM +0300, Alon Levy wrote: ioport_write's val was changed from uint32_t to uint64_t, this broke two printfs. Use PRId64 instead of %d. Nack, missed a 'd' on the second fix. And the subject has a typo. Signed-off-by: Alon Levy al...@redhat.com --- hw/qxl.c