aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-06-10 09:25:23 -0400
committerDavid Robillard <d@drobilla.net>2024-06-10 09:31:17 -0400
commit55245b99cc4e7992f34244b773eeb510f3af8904 (patch)
treeaa00d32ab8816912bb5755bf4b6aef6219984c65 /src/x11.c
parentc46b41787cac270638ef7151782357636cf1be77 (diff)
downloadpugl-55245b99cc4e7992f34244b773eeb510f3af8904.tar.gz
pugl-55245b99cc4e7992f34244b773eeb510f3af8904.tar.bz2
pugl-55245b99cc4e7992f34244b773eeb510f3af8904.zip
Fix build and tests with optional X11 features disabledHEADmain
Diffstat (limited to 'src/x11.c')
-rw-r--r--src/x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11.c b/src/x11.c
index 4db095e..419cd54 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -2194,7 +2194,7 @@ puglSetCursor(PuglView* const view, const PuglCursor cursor)
#else
(void)view;
(void)cursor;
- return PUGL_FAILURE;
+ return PUGL_UNSUPPORTED;
#endif
}