diff options
author | Eric Anholt <eric@anholt.net> | 2014-01-31 15:22:44 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2014-01-31 15:52:43 -0800 |
commit | a55d28ee1b31bd99559607d71e47071ef4e3ad41 (patch) | |
tree | 2ff90c07d594c0182aaad3427045360336a76727 /src | |
parent | c761908c3eda5c2392add7f934fb3c2c5f0a18de (diff) |
Fix a missing \n on printing out failure to dlsym().
Diffstat (limited to 'src')
-rw-r--r-- | src/dispatch_common.c | 2 |
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); } |