mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-01-06 20:00:13 +01:00
test: Fix optstring in getopt_long call
Was missing the "l". Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
This commit is contained in:
parent
541b1c4891
commit
a9a6a6099d
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue