qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] spice: fix 32bit build


From: Luiz Capitulino
Subject: Re: [Qemu-devel] [PATCH] spice: fix 32bit build
Date: Fri, 20 Jun 2014 09:35:02 -0400

On Fri, 20 Jun 2014 08:12:44 +0200
Gerd Hoffmann <address@hidden> wrote:

> Signed-off-by: Gerd Hoffmann <address@hidden>

Tested-by: Luiz Capitulino <address@hidden>

> ---
>  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);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]