diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-06-20 08:12:44 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-06-20 16:22:07 +0100 |
commit | e8e23b7dcf1466a11061bcb1da454489187bbb97 (patch) | |
tree | d38943a1c716851df7b4133e8e1a10df60032389 /hw | |
parent | a096922bef17cd72b281aed788e3d514d9fcff3b (diff) | |
download | qemu-e8e23b7dcf1466a11061bcb1da454489187bbb97.tar.gz qemu-e8e23b7dcf1466a11061bcb1da454489187bbb97.tar.bz2 qemu-e8e23b7dcf1466a11061bcb1da454489187bbb97.zip |
spice: fix 32bit build
Tested-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 1403244764-8622-1-git-send-email-kraxel@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/display/qxl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/qxl.c b/hw/display/qxl.c index 736fd3c4e2..d43aa49eb8 100644 --- a/hw/display/qxl.c +++ b/hw/display/qxl.c @@ -710,7 +710,7 @@ static void interface_release_resource(QXLInstance *sin, if (ext.group_id == MEMSLOT_GROUP_HOST) { /* host group -> vga mode update request */ - QXLCommandExt *cmdext = (void *)(ext.info->id); + QXLCommandExt *cmdext = (void *)(intptr_t)(ext.info->id); SimpleSpiceUpdate *update; g_assert(cmdext->cmd.type == QXL_CMD_DRAW); update = container_of(cmdext, SimpleSpiceUpdate, ext); |