Fix a stupid strcmp error in glyph-complement option processing.

This commit is contained in:
Ben Harris 2017-07-31 16:16:48 +01:00
parent a9221006c2
commit 2df412e093

View File

@ -1265,7 +1265,7 @@ main(int argc, char **argv)
int extraglyphs = 0;
char *endptr;
if (argc == 2 && strcmp(argv[1], "--complement")) {
if (argc == 2 && strcmp(argv[1], "--complement") == 0) {
glyph_complement();
return 0;
}