aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-05-27 18:42:51 -0400
committerDavid Robillard <d@drobilla.net>2021-05-27 18:42:51 -0400
commit873fe784f2a003d8dfa8ee64bc05aba3b0754c86 (patch)
tree40adbe88c3b2ef406788bdba4919ce83425738d4 /src/x11.c
parent0fd60a2bc50c624ff119e8d7d28057d646955541 (diff)
downloadpugl-873fe784f2a003d8dfa8ee64bc05aba3b0754c86.tar.gz
pugl-873fe784f2a003d8dfa8ee64bc05aba3b0754c86.tar.bz2
pugl-873fe784f2a003d8dfa8ee64bc05aba3b0754c86.zip
Fix missing function sentinel
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 b115b21..fad8bc9 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -389,7 +389,7 @@ puglRealize(PuglView* const view)
impl->win,
XNFocusWindow,
impl->win,
- NULL);
+ (XIM)0);
#ifdef HAVE_XCURSOR
defineCursorShape(view, impl->cursorShape);