summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yusuke Sato <yusukes@google.com> 2015-06-29 17:49:28 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-06-29 17:49:37 +0000
commitb508ccd83e76de16e9d19e8cb010b41a1651556a (patch)
treea5619d9a21ab2faaeaada2c7a576bd388df55768
parent806af26f1a8f107cb4f4430ceec8dc9f360f3795 (diff)
parent64db62dcb744c053bd32715a5f654fb352ada449 (diff)
Merge "Rename ZipEntryName to ZipString"
-rw-r--r--runtime/zip_archive.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/zip_archive.cc b/runtime/zip_archive.cc
index 88c1f69bf5..9daaf8e204 100644
--- a/runtime/zip_archive.cc
+++ b/runtime/zip_archive.cc
@@ -124,7 +124,7 @@ ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const {
// Resist the urge to delete the space. <: is a bigraph sequence.
std::unique_ptr< ::ZipEntry> zip_entry(new ::ZipEntry);
- const int32_t error = FindEntry(handle_, ZipEntryName(name), zip_entry.get());
+ const int32_t error = FindEntry(handle_, ZipString(name), zip_entry.get());
if (error) {
*error_msg = std::string(ErrorCodeString(error));
return nullptr;