From 4c66a9031ceface1d53020d4b6b2b439bfb59207 Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Tue, 11 Oct 2016 16:17:39 -0700 Subject: [PATCH] simple-im: Use the appropriate enum names to xkb calls XKB_KEYMAP_COMPILE_NO_FLAGS and XKB_CONTEXT_NO_FLAGS are both defined as 0 so no functional change here, just improved code clarity. Signed-off-by: Bryce Harrington Reviewed-by: Jan Arne Petersen --- clients/weston-simple-im.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/weston-simple-im.c b/clients/weston-simple-im.c index f766a88d..280589b1 100644 --- a/clients/weston-simple-im.c +++ b/clients/weston-simple-im.c @@ -192,7 +192,7 @@ input_method_keyboard_keymap(void *data, xkb_keymap_new_from_string(keyboard->xkb_context, map_str, XKB_KEYMAP_FORMAT_TEXT_V1, - 0); + XKB_KEYMAP_COMPILE_NO_FLAGS); munmap(map_str, size); close(fd); @@ -503,7 +503,7 @@ main(int argc, char *argv[]) return -1; } - simple_im.xkb_context = xkb_context_new(0); + simple_im.xkb_context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); if (simple_im.xkb_context == NULL) { fprintf(stderr, "Failed to create XKB context\n"); return -1;