diff options
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:41 +0000 |
commit | 71107cdd028461c433a39a10eb192edbdf03dede (patch) | |
tree | eeddf32f3c61c03b3b3ffda610326c12b9321c91 /linker/linker.cpp | |
parent | eeb9f5e41662828989f3913d81ec23229a668434 (diff) | |
parent | 56f40fbb822b3b3066a490bdb62666039542987a (diff) |
Merge "Rename ZipEntryName to ZipString"
Diffstat (limited to 'linker/linker.cpp')
-rw-r--r-- | linker/linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp index b9a8f9d74..5d54089fd 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -1159,7 +1159,7 @@ static int open_library_in_zipfile(const char* const path, ZipEntry entry; - if (FindEntry(handle, ZipEntryName(file_path), &entry) != 0) { + if (FindEntry(handle, ZipString(file_path), &entry) != 0) { // Entry was not found. close(fd); return -1; |