chiark
/
gitweb
/
~bjharris
/
bedstead.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a922100
)
Fix a stupid strcmp error in glyph-complement option processing.
author
Ben Harris
<bjh21@bjh21.me.uk>
Mon, 31 Jul 2017 15:16:48 +0000
(16:16 +0100)
committer
Ben Harris
<bjh21@bjh21.me.uk>
Mon, 31 Jul 2017 15:16:48 +0000
(16:16 +0100)
bedstead.c
patch
|
blob
|
history
diff --git
a/bedstead.c
b/bedstead.c
index 38fb2192f97ec5a595f0d6b30c8667103604eefb..e11b2586e3fd21d1f6094af0add7fc3a1e2cb39c 100644
(file)
--- 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;
}