From: Alon Levy <alevy@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel@nongnu.org, Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] ui/spice-display.c: Fix compilation warnings on 32 bit hosts
Date: Wed, 7 Mar 2012 15:46:29 +0200 [thread overview]
Message-ID: <20120307134629.GF6668@garlic.tlv.redhat.com> (raw)
In-Reply-To: <1331127408-15867-1-git-send-email-peter.maydell@linaro.org>
On Wed, Mar 07, 2012 at 01:36:48PM +0000, Peter Maydell wrote:
> Fix compilation failures ("cast from pointer to integer of
> different size [-Werror=pointer-to-int-cast]") by using
> uintptr_t instead.
>
Looks good, Thanks.
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> NB: compile tested only but should be safe :-)
>
> ui/spice-display.c | 12 ++++++------
> 1 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/ui/spice-display.c b/ui/spice-display.c
> index ab266ae..35499e2 100644
> --- a/ui/spice-display.c
> +++ b/ui/spice-display.c
> @@ -75,8 +75,8 @@ void qemu_spice_add_memslot(SimpleSpiceDisplay *ssd, QXLDevMemSlot *memslot,
> {
> if (async != QXL_SYNC) {
> spice_qxl_add_memslot_async(&ssd->qxl, memslot,
> - (uint64_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
> - QXL_IO_MEMSLOT_ADD_ASYNC));
> + (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
> + QXL_IO_MEMSLOT_ADD_ASYNC));
> } else {
> ssd->worker->add_memslot(ssd->worker, memslot);
> }
> @@ -93,8 +93,8 @@ void qemu_spice_create_primary_surface(SimpleSpiceDisplay *ssd, uint32_t id,
> {
> if (async != QXL_SYNC) {
> spice_qxl_create_primary_surface_async(&ssd->qxl, id, surface,
> - (uint64_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
> - QXL_IO_CREATE_PRIMARY_ASYNC));
> + (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
> + QXL_IO_CREATE_PRIMARY_ASYNC));
> } else {
> ssd->worker->create_primary_surface(ssd->worker, id, surface);
> }
> @@ -106,8 +106,8 @@ void qemu_spice_destroy_primary_surface(SimpleSpiceDisplay *ssd,
> {
> if (async != QXL_SYNC) {
> spice_qxl_destroy_primary_surface_async(&ssd->qxl, id,
> - (uint64_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
> - QXL_IO_DESTROY_PRIMARY_ASYNC));
> + (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO,
> + QXL_IO_DESTROY_PRIMARY_ASYNC));
> } else {
> ssd->worker->destroy_primary_surface(ssd->worker, id);
> }
> --
> 1.7.5.4
>
>
prev parent reply other threads:[~2012-03-07 13:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-07 13:36 [Qemu-devel] [PATCH] ui/spice-display.c: Fix compilation warnings on 32 bit hosts Peter Maydell
2012-03-07 13:46 ` Alon Levy [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120307134629.GF6668@garlic.tlv.redhat.com \
--to=alevy@redhat.com \
--cc=kraxel@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).