[Spice-devel] [spice v2 1/3] server: Fix a pointer to uint64_t cast in spice_replay_next_cmd()
Christophe Fergeau
cfergeau at redhat.com
Tue Jan 12 01:56:01 PST 2016
For the series, Acked-by: Christophe Fergeau <cfergeau at redhat.com>
I'll push this now, thanks!
Christophe
On Mon, Jan 11, 2016 at 07:28:26PM +0100, Francois Gouget wrote:
> This avoids a compilation error with -Werror on 32 bit systems as the
> pointer size differs from that of an uint64_t.
>
> Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
> ---
> server/red-replay-qxl.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/server/red-replay-qxl.c b/server/red-replay-qxl.c
> index 66acf1e..7a146b6 100644
> --- a/server/red-replay-qxl.c
> +++ b/server/red-replay-qxl.c
> @@ -1156,7 +1156,7 @@ SPICE_GNUC_VISIBLE QXLCommandExt* spice_replay_next_cmd(SpiceReplay *replay,
> case QXL_CMD_UPDATE:
> case QXL_CMD_SURFACE:
> info = (QXLReleaseInfo *)cmd->cmd.data;
> - info->id = (uint64_t)cmd;
> + info->id = (uint64_t)(uintptr_t)cmd;
> }
>
> replay->counter++;
> --
> 2.6.4
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/spice-devel/attachments/20160112/436b9d6a/attachment-0001.sig>
More information about the Spice-devel
mailing list