From c4d19366cc15587a57dfc7e11fdc3e62bf563868 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 6 Feb 2014 11:29:36 -0800 Subject: [PATCH] Add a missing \n on an error message. --- src/dispatch_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch_common.c b/src/dispatch_common.c index 22a1c7a..8a2e71f 100644 --- a/src/dispatch_common.c +++ b/src/dispatch_common.c @@ -186,7 +186,7 @@ get_dlopen_handle(void **handle, const char *lib_name, bool exit_on_fail) if (!*handle) { *handle = dlopen(lib_name, RTLD_LAZY | RTLD_LOCAL); if (!*handle && exit_on_fail) { - fprintf(stderr, "Couldn't open %s: %s", lib_name, dlerror()); + fprintf(stderr, "Couldn't open %s: %s\n", lib_name, dlerror()); exit(1); } }