diff options
Diffstat (limited to 'compiler/oat_writer.cc')
-rw-r--r-- | compiler/oat_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/oat_writer.cc b/compiler/oat_writer.cc index a16a34b299..41468bae59 100644 --- a/compiler/oat_writer.cc +++ b/compiler/oat_writer.cc @@ -2267,7 +2267,7 @@ bool OatWriter::LayoutAndWriteDexFile(OutputStream* out, OatDexFile* oat_dex_fil dex_file = DexFile::OpenDex(raw_file->Fd(), location, /* verify_checksum */ true, &error_msg); } if (dex_file == nullptr) { - LOG(ERROR) << "Failed to open dex file for layout:" << error_msg; + LOG(ERROR) << "Failed to open dex file for layout: " << error_msg; return false; } Options options; |