tools: fix invocation of subtools

One dash too many. Oops.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2017-06-26 14:05:56 +10:00
parent 1cfab540a4
commit 1d52f2f567

View file

@ -104,5 +104,5 @@ main(int argc, char **argv)
argv += optind;
argc -= optind;
return tools_exec_command("libinput-", argc, argv);
return tools_exec_command("libinput", argc, argv);
}