summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-01-31 15:22:44 -0800
committerEric Anholt <eric@anholt.net>2014-01-31 15:52:43 -0800
commita55d28ee1b31bd99559607d71e47071ef4e3ad41 (patch)
tree2ff90c07d594c0182aaad3427045360336a76727
parentc761908c3eda5c2392add7f934fb3c2c5f0a18de (diff)
Fix a missing \n on printing out failure to dlsym().
-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);
}