From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43692) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wxs4Q-0008Mh-FH for qemu-devel@nongnu.org; Fri, 20 Jun 2014 02:13:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wxs4F-0001kD-MR for qemu-devel@nongnu.org; Fri, 20 Jun 2014 02:13:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52223) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wxs4F-0001k7-Ek for qemu-devel@nongnu.org; Fri, 20 Jun 2014 02:12:55 -0400 From: Gerd Hoffmann Date: Fri, 20 Jun 2014 08:12:44 +0200 Message-Id: <1403244764-8622-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH] spice: fix 32bit build List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , Anthony Liguori , lcapitulino@redhat.com Signed-off-by: Gerd Hoffmann --- hw/display/qxl.c | 2 +- ui/spice-display.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/display/qxl.c b/hw/display/qxl.c index 736fd3c..d43aa49 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); diff --git a/ui/spice-display.c b/ui/spice-display.c index 03040b1..66e2578 100644 --- a/ui/spice-display.c +++ b/ui/spice-display.c @@ -534,7 +534,7 @@ static void interface_release_resource(QXLInstance *sin, QXLCommandExt *ext; dprint(2, "%s/%d:\n", __func__, ssd->qxl.id); - ext = (void *)(rext.info->id); + ext = (void *)(intptr_t)(rext.info->id); switch (ext->cmd.type) { case QXL_CMD_DRAW: update = container_of(ext, SimpleSpiceUpdate, ext); -- 1.8.3.1