explicitly return -1 in the first check in toplevel_from_wlr_surface

This commit is contained in:
Leonardo Hernández Hernández 2023-11-16 21:46:46 -06:00
parent b1740056d5
commit caac2d664d
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ toplevel_from_wlr_surface(struct wlr_surface *s, Client **pc, LayerSurface **pl)
#endif #endif
if (!s) if (!s)
return type; return -1;
root_surface = wlr_surface_get_root_surface(s); root_surface = wlr_surface_get_root_surface(s);
#ifdef XWAYLAND #ifdef XWAYLAND