Correct options for getopt_long
authorNathael Pajani <nathael.pajani@ed3l.fr>
Mon, 21 May 2012 22:41:54 +0000 (00:41 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Mon, 21 May 2012 22:41:54 +0000 (00:41 +0200)
lpc_prog.c

index d84aa9e..aff765b 100644 (file)
@@ -100,7 +100,7 @@ int main(int argc, char** argv)
                        {0, 0, 0, 0}
                };
 
-               c = getopt_long(argc, argv, "sb:thv", long_options, &option_index);
+               c = getopt_long(argc, argv, "sb:tfuhv", long_options, &option_index);
 
                /* no more options to parse */
                if (c == -1) break;