Remove unnecessary curly brackets

This commit is contained in:
sin 2014-12-20 19:14:10 +00:00
parent 905b74161e
commit d907c3f994
1 changed files with 1 additions and 2 deletions

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