--output-file option improperly maps to 'c' flag. This causes the option to be considered invalid when parsed. scythe.c Line 70: {"output-file", required_argument, 0, 'c'}, should be: scythe.c Line 70: {"output-file", required_argument, 0, 'o'},
--output-file option improperly maps to 'c' flag. This causes the option to be considered invalid when parsed.
scythe.c Line 70: {"output-file", required_argument, 0, 'c'},
should be:
scythe.c Line 70: {"output-file", required_argument, 0, 'o'},