Fix a missing \n on printing out failure to dlsym().

macos/v1.5.9
Eric Anholt 11 years ago
parent c761908c3e
commit a55d28ee1b
  1. 2
      src/dispatch_common.c

@ -208,7 +208,7 @@ do_dlsym(void **handle, const char *lib_name, const char *name,
result = dlsym(*handle, name); result = dlsym(*handle, name);
#endif #endif
if (!result) { 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); exit(1);
} }

Loading…
Cancel
Save