From 123a8dc84db405d3001fd02d224a02ebe6ec0b18 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Tue, 25 Nov 2014 10:24:08 +0100 Subject: terminal/idev: avoid magic numbers Use XKB_CONTEXT_NO_FLAGS instead of magic 0. --- src/libsystemd-terminal/idev-keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libsystemd-terminal') diff --git a/src/libsystemd-terminal/idev-keyboard.c b/src/libsystemd-terminal/idev-keyboard.c index eca38fc7a9..c690c6647f 100644 --- a/src/libsystemd-terminal/idev-keyboard.c +++ b/src/libsystemd-terminal/idev-keyboard.c @@ -558,7 +558,7 @@ static int kbdctx_new(kbdctx **out, idev_context *c) { kc->context = c; errno = 0; - kc->xkb_context = xkb_context_new(0); + kc->xkb_context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); if (!kc->xkb_context) return errno > 0 ? -errno : -EFAULT; -- cgit v1.2.3-54-g00ecf