Skip to content

Commit

Permalink
Don't decorate library names prior to loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian committed Mar 1, 2009
1 parent 2a5174b commit 4f46e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bootImageRunner/sysLibrary.C
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EXTERNAL void* sysDlopen(char *libname)
TRACE_PRINTF("%s: sysDlopen %s\n", Me, libname);
#ifdef RVM_FOR_HARMONY
UDATA descriptor;
if (hysl_open_shared_library(libname, &descriptor, TRUE) != 0) {
if (hysl_open_shared_library(libname, &descriptor, FALSE) != 0) {
ERROR_PRINTF("%s: error loading library %s\n", Me, libname);
return NULL;
} else {
Expand Down

0 comments on commit 4f46e92

Please sign in to comment.