summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-03-28 11:23:15 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-03-28 18:56:38 +1000
commit937541cb82bb7e9fb22c30cab3d402482e8909ac (patch)
tree610fb33dd5b924eebb9a6cc21461011c12e91ee2 /test
parent727269666632fb05de08bd96e1d06fccd29a7082 (diff)
test: align litest output messages
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r--test/litest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/litest.c b/test/litest.c
index 5086bd9..f9797b7 100644
--- a/test/litest.c
+++ b/test/litest.c
@@ -788,14 +788,14 @@ litest_log_handler(struct libinput *libinput,
const char *priority = NULL;
switch(pri) {
- case LIBINPUT_LOG_PRIORITY_INFO: priority = "info"; break;
+ case LIBINPUT_LOG_PRIORITY_INFO: priority = "info "; break;
case LIBINPUT_LOG_PRIORITY_ERROR: priority = "error"; break;
case LIBINPUT_LOG_PRIORITY_DEBUG: priority = "debug"; break;
default:
abort();
}
- fprintf(stderr, "litest %s: ", priority);
+ fprintf(stderr, "litest %s ", priority);
vfprintf(stderr, format, args);
if (strstr(format, "client bug: ") ||