diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2024-01-22 21:04:50 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2024-01-29 11:58:44 +0000 |
| commit | 1b5b70c2c0917aabf6595da63a59c5499d57963a (patch) | |
| tree | d402604d4b682b3a8b5da783c47a951f27b04c2e /src/input.c | |
| parent | 241bf4dcda9518633cb2990adc27eda40fd42c77 (diff) | |
Fix compilation
I didn't quite get all the renames in the first pass.
Diffstat (limited to 'src/input.c')
| -rw-r--r-- | src/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input.c b/src/input.c index f026260..34b1718 100644 --- a/src/input.c +++ b/src/input.c @@ -270,7 +270,7 @@ binding_t* get_action(i_ctx* c, action_t* a) { for (isize i = 0; i < c->len; i++) { if (c->bindings[i].action.type != a->type) continue; - switch (c->bindings[i].action) { + switch (c->bindings[i].action.type) { case InputType_error: return NULL; |
