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 <bryce@osg.samsung.com>
Reviewed-by: Jan Arne Petersen <janarne@gmail.com>
diff --git a/clients/weston-simple-im.c b/clients/weston-simple-im.c
index f766a88..280589b 100644
--- a/clients/weston-simple-im.c
+++ b/clients/weston-simple-im.c
@@ -192,7 +192,7 @@
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 @@
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;