From: Nathael Pajani Date: Mon, 21 May 2012 22:41:54 +0000 (+0200) Subject: Correct options for getopt_long X-Git-Tag: v1.0~14 X-Git-Url: http://git.techno-innov.fr/?a=commitdiff_plain;h=8d6c706d5292cdb88b768e532e9840cc90ccbf2f;p=soft%2Ftools%2Flpctools Correct options for getopt_long --- diff --git a/lpc_prog.c b/lpc_prog.c index d84aa9e..aff765b 100644 --- a/lpc_prog.c +++ b/lpc_prog.c @@ -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;