evas canvas - init res var to avoid uninit warning

@fix
This commit is contained in:
Carsten Haitzler 2022-05-18 13:17:35 +01:00
parent 1c9cc755d0
commit 863e1a1c7e
1 changed files with 1 additions and 1 deletions

View File

@ -2197,7 +2197,7 @@ comp_surface_mouse_move(void *data, Evas *e EINA_UNUSED, Eo *obj EINA_UNUSED, vo
Evas_Event_Mouse_Move *ev = event_info;
Comp_Surface *cs = data;
Eina_List *l = NULL, *ll;
struct wl_resource *res;
struct wl_resource *res = NULL;
int x, y;
Comp_Seat *s;