From a55d28ee1b31bd99559607d71e47071ef4e3ad41 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 31 Jan 2014 15:22:44 -0800 Subject: [PATCH] Fix a missing \n on printing out failure to dlsym(). --- 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 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); }