keymap: Variable "layout" should be const - slstatus - status monitor | |
git clone git://git.suckless.org/slstatus | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit c75cb9ad7af55d16b864b1059fbc1aaa9d9874de | |
parent 89f8476110c7bdfb70528da79be328ba0f6490be | |
Author: planet36 <[email protected]> | |
Date: Fri, 5 Mar 2021 14:35:24 -0500 | |
keymap: Variable "layout" should be const | |
Signed-off-by: drkhsh <[email protected]> | |
Diffstat: | |
M components/keymap.c | 5 +++-- | |
1 file changed, 3 insertions(+), 2 deletions(-) | |
--- | |
diff --git 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); |