Skip to content

Commit

Permalink
Fixed the call to getopt_long
Browse files Browse the repository at this point in the history
  • Loading branch information
astiob committed Mar 13, 2011
1 parent a24f507 commit bf8e54d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ int real_main(int argc, char *argv[])
int c = -1;
int option_index = 0;

c = getopt_long(argc, argv, "hTtEe:a:b:c:d:f:g:i:k:l:n:o:p:q::u:w:y:z:A:B:C:D:F:G:H:I:J:K:L:MN:QR:S:U:WXV:ZP 0xAA: 0xAB: 0xAC: 0xAD: 0xAE: 0xAF: 0xB0: 0xB1: 0xB2: 0xB3: 0xB4: 0xB5: 0xB6:", long_options, &option_index);
c = getopt_long(argc, argv, "hTtEe:a:b:c:d:f:g:i:k:l:n:o:p:q::u:w:x:y:z:A:B:C:D:F:G:H:I:J:K:L:MN:QR:S:U:WXV:ZP", long_options, &option_index);

if (c == -1) {
if (argc < 3 && argc > 2) {
Expand Down

0 comments on commit bf8e54d

Please sign in to comment.