summaryrefslogtreecommitdiff
path: root/components/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'components/keymap.c')
-rw-r--r--components/keymap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/keymap.c b/components/keymap.c
index 4740431..f8a2a47 100644
--- a/components/keymap.c
+++ b/components/keymap.c
@@ -50,7 +50,8 @@ keymap(const char *unused)
Display *dpy;
XkbDescRec *desc;
XkbStateRec state;
- char *symbols, *layout;
+ char *symbols;
+ const char *layout;
layout = NULL;
@@ -74,7 +75,7 @@ keymap(const char *unused)
warn("XGetAtomName: Failed to get atom name");
goto end;
}
- layout = (char *)bprintf("%s", get_layout(symbols, state.group));
+ layout = bprintf("%s", get_layout(symbols, state.group));
XFree(symbols);
end:
XkbFreeKeyboard(desc, XkbSymbolsNameMask, 1);