keymap: Add braces for for loop
Aaron Marcher me@drkhsh.at
Wed, 23 May 2018 13:30:45 +0200
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
components/keymap.c
→
components/keymap.c
@@ -20,10 +20,11 @@ {
static const char* EXCLUDES[] = { "evdev", "inet", "pc", "base" }; size_t i; - for (i = 0; i < sizeof(EXCLUDES)/sizeof(EXCLUDES[0]); ++i) + for (i = 0; i < sizeof(EXCLUDES)/sizeof(EXCLUDES[0]); ++i) { if (strstr(sym, EXCLUDES[i])) { return 0; } + } return 1; }