summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dispatch_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispatch_common.c b/src/dispatch_common.c
index b85e0cc..22a1c7a 100644
--- a/src/dispatch_common.c
+++ b/src/dispatch_common.c
@@ -208,7 +208,7 @@ do_dlsym(void **handle, const char *lib_name, const char *name,
result = dlsym(*handle, name);
#endif
if (!result) {
- fprintf(stderr,"%s() not found in %s", name, lib_name);
+ fprintf(stderr,"%s() not found in %s\n", name, lib_name);
exit(1);
}