commit b1740056d5e9f81888fc9cb3e016bdb8eff054c1
parent 0067c76caba464c0636183a8318fee6d63cd2b35
Author: Leonardo Hernández Hernández <leohdz172@proton.me>
Date: Thu, 16 Nov 2023 21:45:08 -0600
do not use #ifdef -> #else -> #endif in client_is_x11
all other funcions use #ifdef -> #endif
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/client.h b/client.h
@@ -11,9 +11,8 @@ client_is_x11(Client *c)
{
#ifdef XWAYLAND
return c->type == X11Managed || c->type == X11Unmanaged;
-#else
- return 0;
#endif
+ return 0;
}
static inline struct wlr_surface *