input: remove non-existing state from debug log

This commit is contained in:
Daniel Eklöf 2020-12-23 18:13:40 +01:00
parent e18abae269
commit e9a27d1272
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -750,7 +750,7 @@ keymap_lookup(struct seat *seat, struct terminal *term,
const enum keypad_keys keypad_keys_mode
= term->num_lock_modifier ? KEYPAD_NUMERICAL : term->keypad_keys_mode;
LOG_DBG("keypad mode: %d, num-lock=%d", keypad_keys_mode, seat->kbd.num);
LOG_DBG("keypad mode: %d", keypad_keys_mode);
for (size_t j = 0; j < count; j++) {
if (info[j].modifiers != MOD_ANY && info[j].modifiers != mods)