mirror of
https://bjh21.me.uk/bedstead/.git
synced 2026-07-09 21:43:06 -04:00
Fix a stupid strcmp error in glyph-complement option processing.
This commit is contained in:
parent
a9221006c2
commit
2df412e093
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user