Add a missing \n on an error message.

macos/v1.5.9
Eric Anholt 11 years ago
parent 766422a82c
commit c4d19366cc
  1. 2
      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);
}
}

Loading…
Cancel
Save