diff options
| author | 2014-10-28 21:37:02 +0000 | |
|---|---|---|
| committer | 2014-10-28 21:37:02 +0000 | |
| commit | f4e60fb49f96aeb13a58523b7f9f9e91ab4b533c (patch) | |
| tree | be295953bc4f84328545f9c93bf7f7f1376a5908 | |
| parent | d7c581cc076a03da2b00a9a3ceaeb5d04ec815df (diff) | |
| parent | efb9f850292a2ea5aae4ab56556c9ab25b308a96 (diff) | |
am efb9f850: ART: Fix ImageSpace error message.
* commit 'efb9f850292a2ea5aae4ab56556c9ab25b308a96':
ART: Fix ImageSpace error message.
| -rw-r--r-- | runtime/gc/space/image_space.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index cd5e196fa1..b67257f0db 100644 --- a/runtime/gc/space/image_space.cc +++ b/runtime/gc/space/image_space.cc @@ -497,7 +497,7 @@ ImageSpace* ImageSpace::Create(const char* image_location, if (relocated_version_used) { LOG(FATAL) << "Attempted to use relocated version of " << image_location << " " << "at " << cache_filename << " generated from " << system_filename << " " - << "but image failed to load: " << error_msg; + << "but image failed to load: " << *error_msg; return nullptr; } else if (is_system) { *error_msg = StringPrintf("Failed to load /system image '%s': %s", |