summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2020-07-08 13:25:12 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2020-07-08 13:25:12 +1000
commit912a457f18f5f55e9de46f26125af9256300b2e6 (patch)
tree8ab010ebbc04a8c3c683fa509c154bc45de36e92
parent2e257410612a15e50d29a74c4519df0de4528aee (diff)
tools: add missing linebreak in error message
Missing from a0643a9c9879e569c2a47b13f203561de8031cc0 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--tools/shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.c b/tools/shared.c
index e0eae681..af791274 100644
--- a/tools/shared.c
+++ b/tools/shared.c
@@ -561,7 +561,7 @@ tools_exec_command(const char *prefix, int real_argc, char **real_argv)
if (rc) {
if (errno == ENOENT) {
fprintf(stderr,
- "libinput: %s is not installed.",
+ "libinput: %s is not installed\n",
command);
return EXIT_INVALID_USAGE;
} else {