convert-emoji: Add missing braces

This commit is contained in:
Daniel Boles 2017-08-12 14:06:09 +01:00
parent 929108d31a
commit bfafe9aaee

View File

@ -128,9 +128,10 @@ main (int argc, char *argv[])
skip = FALSE;
for (j = 0; blacklist[j]; j++) {
if (strstr (name, blacklist[j]) != 0)
if (strstr (name, blacklist[j]) != 0) {
skip = TRUE;
break;
}
}
if (skip)
continue;