Browse Source

Remove unnecessary curly brackets

master
sin 9 years ago
parent
commit
d907c3f994
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      noice.c

+ 1
- 2
noice.c View File

@@ -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;
}


Loading…
Cancel
Save