aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--noice.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/noice.c b/noice.c
index 8119108..ecad447 100644
--- a/noice.c
+++ b/noice.c
@@ -303,10 +303,9 @@ nextsel(void)
c = getch();
- for (i = 0; i < LEN(bindings); i++) {
+ for (i = 0; i < LEN(bindings); i++)
if (c == bindings[i].sym)
return bindings[i].act;
- }
return 0;
}