From 8d6c706d5292cdb88b768e532e9840cc90ccbf2f Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Tue, 22 May 2012 00:41:54 +0200 Subject: [PATCH] Correct options for getopt_long --- lpc_prog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.0