From a9a6a6099db466d8b536cf5799e0abfd01d6e17a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jonas=20=C3=85dahl?= Date: Wed, 15 Jan 2014 21:11:51 +0100 Subject: [PATCH] test: Fix optstring in getopt_long call MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Was missing the "l". Signed-off-by: Jonas Ådahl --- test/litest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/litest.c b/test/litest.c index ac67994..e5898e1 100644 --- a/test/litest.c +++ b/test/litest.c @@ -267,7 +267,7 @@ litest_run(int argc, char **argv) { int c; int option_index = 0; - c = getopt_long(argc, argv, "", opts, &option_index); + c = getopt_long(argc, argv, "l", opts, &option_index); if (c == -1) break; switch(c) { -- 2.7.4