The getopt_long shortarg string needed a ':' after 'C' as it has a

mandatory argument.
This commit is contained in:
Nicholas J. Kain 2014-03-14 20:47:57 -04:00
parent fbe6d36b6b
commit 4afddd471a

View File

@ -388,7 +388,7 @@ int main(int argc, char **argv)
while (1) {
int c;
c = getopt_long(argc, argv, "c:fbp:P:l:h:i:nqr:V:u:U:CS:dw:W:m:M:R:Hv?",
c = getopt_long(argc, argv, "c:fbp:P:l:h:i:nqr:V:u:U:C:S:dw:W:m:M:R:Hv?",
arg_options, NULL);
if (c == -1) break;