* [Qemu-devel] [PATCH] hw/qxl: fir build break with newer spice
@ 2011-08-09 12:21 Alon Levy
2011-08-09 16:26 ` Alon Levy
0 siblings, 1 reply; 2+ messages in thread
From: Alon Levy @ 2011-08-09 12:21 UTC (permalink / raw)
To: qemu-devel
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 <alevy@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
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -1189,7 +1189,7 @@ async_common:
}
d->current_async = orig_io_port;
qemu_mutex_unlock(&d->async_lock);
- dprint(d, 2, "start async %d (%d)\n", io_port, val);
+ dprint(d, 2, "start async %d (%"PRId64")\n", io_port, val);
break;
default:
break;
@@ -1305,7 +1305,8 @@ async_common:
break;
}
case QXL_IO_FLUSH_SURFACES_ASYNC:
- dprint(d, 1, "QXL_IO_FLUSH_SURFACES_ASYNC (%d) (%s, s#=%d, res#=%d)\n",
+ dprint(d, 1, "QXL_IO_FLUSH_SURFACES_ASYNC"
+ " (%"PRId64"d) (%s, s#=%d, res#=%d)\n",
val, qxl_mode_to_string(d->mode), d->guest_surfaces.count,
d->num_free_res);
qxl_spice_flush_surfaces_async(d);
--
1.7.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/qxl: fir build break with newer spice
2011-08-09 12:21 [Qemu-devel] [PATCH] hw/qxl: fir build break with newer spice Alon Levy
@ 2011-08-09 16:26 ` Alon Levy
0 siblings, 0 replies; 2+ messages in thread
From: Alon Levy @ 2011-08-09 16:26 UTC (permalink / raw)
To: qemu-devel
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 <alevy@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
> --- a/hw/qxl.c
> +++ b/hw/qxl.c
> @@ -1189,7 +1189,7 @@ async_common:
> }
> d->current_async = orig_io_port;
> qemu_mutex_unlock(&d->async_lock);
> - dprint(d, 2, "start async %d (%d)\n", io_port, val);
> + dprint(d, 2, "start async %d (%"PRId64")\n", io_port, val);
> break;
> default:
> break;
> @@ -1305,7 +1305,8 @@ async_common:
> break;
> }
> case QXL_IO_FLUSH_SURFACES_ASYNC:
> - dprint(d, 1, "QXL_IO_FLUSH_SURFACES_ASYNC (%d) (%s, s#=%d, res#=%d)\n",
> + dprint(d, 1, "QXL_IO_FLUSH_SURFACES_ASYNC"
> + " (%"PRId64"d) (%s, s#=%d, res#=%d)\n",
> val, qxl_mode_to_string(d->mode), d->guest_surfaces.count,
> d->num_free_res);
> qxl_spice_flush_surfaces_async(d);
> --
> 1.7.6
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-08-09 16:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-09 12:21 [Qemu-devel] [PATCH] hw/qxl: fir build break with newer spice Alon Levy
2011-08-09 16:26 ` Alon Levy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).