e_comp_wl: fixed typo. 95/77595/1 accepted/tizen/common/20160630.152038 accepted/tizen/ivi/20160701.032625 accepted/tizen/mobile/20160701.032534 accepted/tizen/tv/20160701.032614 accepted/tizen/wearable/20160701.032549 submit/tizen/20160630.065936
authorGwanglim Lee <gl77.lee@samsung.com>
Thu, 30 Jun 2016 08:40:34 +0000 (17:40 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Thu, 30 Jun 2016 08:40:34 +0000 (17:40 +0900)
Change-Id: Ibe42cfb5c83d934a56bed5c973b4f8f91e896b7f

src/bin/e_comp_wl.c

index 971d28eaf97f979cf592ed7a9d5c67507289f173..f10cc15b085702e652bb642a6f3463663d9458b4 100755 (executable)
@@ -1869,7 +1869,7 @@ _e_comp_wl_cb_mouse_move(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mou
         int x, y;
 
         res = e_comp_wl_data_find_for_client(wl_resource_get_client(e_comp_wl->selection.target->comp_data->surface));
-        EINA_SAFETY_ON_TRUE_RETURN_VAL(res, ECORE_CALLBACK_RENEW);
+        EINA_SAFETY_ON_NULL_RETURN_VAL(res, ECORE_CALLBACK_RENEW);
 
         x = ev->x - e_comp_wl->selection.target->client.x;
         y = ev->y - e_comp_wl->selection.target->client.y;