From: Ben Harris Date: Mon, 31 Jul 2017 15:16:48 +0000 (+0100) Subject: Fix a stupid strcmp error in glyph-complement option processing. X-Git-Tag: bedstead-002.000~119 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=2df412e093bb6b1dc152dbb0fe676cf4919d62e1;p=bedstead-debian.git Fix a stupid strcmp error in glyph-complement option processing. --- diff --git a/bedstead.c b/bedstead.c index 38fb219..e11b258 100644 --- a/bedstead.c +++ b/bedstead.c @@ -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; }