ecore-wl2: Fix return with no value in function returning non-void

This commit is contained in:
Christopher Michael 2020-01-08 09:10:43 -05:00
parent 8d9f032db6
commit 73195a34de
1 changed files with 1 additions and 1 deletions

View File

@ -1142,7 +1142,7 @@ ecore_wl2_window_popup_input_set(Ecore_Wl2_Window *window, Ecore_Wl2_Input *inpu
EAPI Ecore_Wl2_Input *
ecore_wl2_window_popup_input_get(Ecore_Wl2_Window *window)
{
EINA_SAFETY_ON_NULL_RETURN(window);
EINA_SAFETY_ON_NULL_RETURN_VAL(window, NULL);
return window->grab;
}