summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--runtime/jni_internal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jni_internal.cc b/runtime/jni_internal.cc
index 38aeaee..c04aabf 100644
--- a/runtime/jni_internal.cc
+++ b/runtime/jni_internal.cc
@@ -3143,7 +3143,7 @@ bool JavaVMExt::LoadNativeLibrary(const std::string& path,
if (handle == nullptr) {
*detail = dlerror();
- LOG(ERROR) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << detail;
+ LOG(ERROR) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << *detail;
return false;
}