diff options
Diffstat (limited to 'openjdkjvmti/ti_search.cc')
-rw-r--r-- | openjdkjvmti/ti_search.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/openjdkjvmti/ti_search.cc b/openjdkjvmti/ti_search.cc index 1189b1dec5..427869e798 100644 --- a/openjdkjvmti/ti_search.cc +++ b/openjdkjvmti/ti_search.cc @@ -229,8 +229,12 @@ jvmtiError SearchUtil::AddToBootstrapClassLoaderSearch(jvmtiEnv* env ATTRIBUTE_U std::string error_msg; std::vector<std::unique_ptr<const art::DexFile>> dex_files; const art::ArtDexFileLoader dex_file_loader; - if (!dex_file_loader.Open( - segment, segment, /* verify */ true, /* verify_checksum */ true, &error_msg, &dex_files)) { + if (!dex_file_loader.Open(segment, + segment, + /* verify= */ true, + /* verify_checksum= */ true, + &error_msg, + &dex_files)) { LOG(WARNING) << "Could not open " << segment << " for boot classpath extension: " << error_msg; return ERR(ILLEGAL_ARGUMENT); } |