From c2082c197320d1603da19eaf4a208d281de1cc82 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 24 Feb 2013 12:11:24 +0900 Subject: [PATCH] fix 64bit complaint for elm cnp (harmless other than warning noise). --- legacy/elementary/src/lib/elm_cnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_cnp.c b/legacy/elementary/src/lib/elm_cnp.c index 2e9ffba..be80853 100644 --- a/legacy/elementary/src/lib/elm_cnp.c +++ b/legacy/elementary/src/lib/elm_cnp.c @@ -1452,7 +1452,7 @@ _x11_dnd_status(void *data __UNUSED__, int etype __UNUSED__, void *ev) static Eina_Bool _x11_drag_mouse_up(void *data, int etype __UNUSED__, void *event) { - Ecore_X_Window xwin = (Ecore_X_Window)data; + Ecore_X_Window xwin = (Ecore_X_Window)(long)data; Ecore_Event_Mouse_Button *ev = event; if ((ev->buttons == 1) && -- 2.7.4