keymap: Add braces for for loop

This commit is contained in:
Aaron Marcher 2018-05-23 13:30:45 +02:00
parent 385aedffd9
commit d6ad87ce06
1 changed files with 2 additions and 1 deletions

View File

@ -20,10 +20,11 @@ IsLayoutOrVariant(char *sym)
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;
}