From: "Daniel P. Berrange" <[email protected]> Tell the compiler that was really do intend to cast from int to pointer, to prevent warnings about implicit casts
* server/tests/test_display_base.c: Add explicit casts Signed-off-by: Daniel P. Berrange <[email protected]> --- server/tests/test_display_base.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/tests/test_display_base.c b/server/tests/test_display_base.c index f6c3f6b..3e2ba6c 100644 --- a/server/tests/test_display_base.c +++ b/server/tests/test_display_base.c @@ -522,7 +522,7 @@ static void do_wakeup(void *opaque) static void release_resource(QXLInstance *qin, struct QXLReleaseInfoExt release_info) { - QXLCommandExt *ext = (unsigned long)release_info.info->id; + QXLCommandExt *ext = (QXLCommandExt*)(unsigned long)release_info.info->id; //printf("%s\n", __func__); ASSERT(release_info.group_id == MEM_SLOT_GROUP_ID); switch (ext->cmd.type) { @@ -533,7 +533,7 @@ static void release_resource(QXLInstance *qin, struct QXLReleaseInfoExt release_ free(ext); break; case QXL_CMD_CURSOR: { - QXLCursorCmd *cmd = (unsigned long)ext->cmd.data; + QXLCursorCmd *cmd = (QXLCursorCmd *)(unsigned long)ext->cmd.data; if (cmd->type == QXL_CURSOR_SET) { free(cmd); } -- 1.7.7.6 _______________________________________________ Spice-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/spice-devel
