noice

small file browser
git clone git://git.2f30.org/noice
Log | Files | Refs | README | LICENSE

commit d907c3f9941a922579d3ad92aedeb1e4e2ab5c2e
parent 905b74161e0a37b8ffb57f8dbd252e7dfbddaeb3
Author: sin <sin@2f30.org>
Date:   Sat, 20 Dec 2014 19:14:10 +0000

Remove unnecessary curly brackets

Diffstat:
Mnoice.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

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