aboutsummaryrefslogtreecommitdiff
path: root/xwayland/xwayland.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-12-08 02:04:58 +0100
committerSimon Ser <contact@emersion.fr>2022-12-08 02:06:40 +0100
commit9b7ee63774a0d9e51ee677ed5e924093e71b8847 (patch)
treecd74a9301e814ed9fa0aa93b41058b1edbbff4ea /xwayland/xwayland.c
parent1ed513772016623707b9e4c9da5ca3eb8579e0eb (diff)
xwayland: use HAVE_ prefix for xcb_xfixes_set_client_disconnect_mode
86fc2199f85a ("build: unify naming for HAVE_* defines") has switched over all other feature defines from HAS_* to HAVE_*, but missed this one.
Diffstat (limited to 'xwayland/xwayland.c')
-rw-r--r--xwayland/xwayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xwayland/xwayland.c b/xwayland/xwayland.c
index abaebd0d..75c09f31 100644
--- a/xwayland/xwayland.c
+++ b/xwayland/xwayland.c
@@ -102,7 +102,7 @@ struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
struct wlr_xwayland_server_options options = {
.lazy = lazy,
.enable_wm = true,
-#if HAS_XCB_XFIXES_SET_CLIENT_DISCONNECT_MODE
+#if HAVE_XCB_XFIXES_SET_CLIENT_DISCONNECT_MODE
.terminate_delay = lazy ? 10 : 0,
#endif
};