action: s/hndlrType/handler_type Signed-off-by: Ran Benita <ran234@gmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/src/xkbcomp/action.c b/src/xkbcomp/action.c
index d0e18dd..22762c6 100644
--- a/src/xkbcomp/action.c
+++ b/src/xkbcomp/action.c
@@ -860,7 +860,7 @@ HandleActionDef(ExprDef *def, struct xkb_keymap *keymap,
{
ExprDef *arg;
const char *str;
- unsigned hndlrType;
+ unsigned handler_type;
if (def->op != EXPR_ACTION_DECL) {
log_err(keymap->ctx, "Expected an action definition, found %s\n",
@@ -869,7 +869,7 @@ HandleActionDef(ExprDef *def, struct xkb_keymap *keymap,
}
str = xkb_atom_text(keymap->ctx, def->value.action.name);
- if (!stringToAction(str, &hndlrType)) {
+ if (!stringToAction(str, &handler_type)) {
log_err(keymap->ctx, "Unknown action %s\n", str);
return false;
}
@@ -879,7 +879,7 @@ HandleActionDef(ExprDef *def, struct xkb_keymap *keymap,
* statements such as:
* latchMods.clearLocks = True;
*/
- *action = info->actions[hndlrType];
+ *action = info->actions[handler_type];
/*
* Now change the action properties as specified for this
@@ -923,8 +923,8 @@ HandleActionDef(ExprDef *def, struct xkb_keymap *keymap,
return false;
}
- if (!handleAction[hndlrType](keymap, action, fieldNdx, arrayRtrn,
- value))
+ if (!handleAction[handler_type](keymap, action, fieldNdx, arrayRtrn,
+ value))
return false;
}