ecore_wl2: Fix a warning

This commit is contained in:
Jean-Philippe Andre 2017-12-05 14:33:03 +09:00
parent 207a0cf3e3
commit b867b6aa24
1 changed files with 1 additions and 1 deletions

View File

@ -1035,7 +1035,7 @@ ecore_wl2_window_display_get(const Ecore_Wl2_Window *window)
EINA_SAFETY_ON_NULL_RETURN_VAL(window, NULL);
EINA_SAFETY_ON_NULL_RETURN_VAL(window->display, NULL);
if (window->display->recovering) return EINA_FALSE;
if (window->display->recovering) return NULL;
return window->display;
}