diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 11:03:40 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 11:03:40 -0800 |
commit | 9737af15196380a1687d18a17d297ee17b45a83f (patch) | |
tree | 555445d8fbb5e814a8e9afb4b9bba78886455aed /action.c | |
parent | b67c058e2ccc27472b238a6b5dc5e4cd20f6d2bd (diff) |
Remove register keyword from variable declarations
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -372,7 +372,7 @@ CheckModifierField(XkbDescPtr xkb, if (value->op == ExprIdent) { - register char *valStr; + char *valStr; valStr = XkbAtomGetString(NULL, value->value.str); if (valStr && ((uStrCaseCmp(valStr, "usemodmapmods") == 0) || (uStrCaseCmp(valStr, "modmapmods") == 0))) @@ -1324,7 +1324,7 @@ HandleActionDef(ExprDef * def, XkbAnyAction * action, unsigned mergeMode, ActionInfo * info) { ExprDef *arg; - register char *str; + char *str; unsigned tmp, hndlrType; if (!actionsInitialized) |