From d23c55ee862e759250345d0f5287324281cad80d Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 10 Aug 2024 22:49:48 +0300 Subject: [PATCH] Fix a conditional compilation macro --- source/input/x11/synthesizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/input/x11/synthesizer.cpp b/source/input/x11/synthesizer.cpp index 7106765..5348f06 100644 --- a/source/input/x11/synthesizer.cpp +++ b/source/input/x11/synthesizer.cpp @@ -14,7 +14,7 @@ namespace Input { Synthesizer::Synthesizer(Graphics::Display &d): display(d) { -#ifdef WITH_XEST +#ifdef WITH_XTEST ::Display *dpy = display.get_private().display; int event_base; int error_base; -- 2.45.2