ecore_x_gesture: Cast maek pointer correctly.

Confirmed by the original author of libxgesture, Sungjin Park.
This commit is contained in:
Daniel Juyung Seo 2014-01-15 20:47:49 +09:00
parent cc82e2ded5
commit 2830507661
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ ecore_x_gesture_events_selected_get(Ecore_X_Window win)
return ECORE_X_GESTURE_EVENT_MASK_NONE;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if (GestureSuccess != XGestureGetSelectedEvents(_ecore_x_disp, win, &mask))
if (GestureSuccess != XGestureGetSelectedEvents(_ecore_x_disp, win, (Mask *)&mask))
mask = ECORE_X_GESTURE_EVENT_MASK_NONE;
if (_ecore_xlib_sync) ecore_x_sync();