From 912a457f18f5f55e9de46f26125af9256300b2e6 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 8 Jul 2020 13:25:12 +1000 Subject: [PATCH] tools: add missing linebreak in error message Missing from a0643a9c9879e569c2a47b13f203561de8031cc0 Signed-off-by: Peter Hutterer --- tools/shared.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {