aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/ijar.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/ijar/ijar.cc')
-rw-r--r--third_party/ijar/ijar.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/ijar/ijar.cc b/third_party/ijar/ijar.cc
index af90fbbf3b..3c83b63764 100644
--- a/third_party/ijar/ijar.cc
+++ b/third_party/ijar/ijar.cc
@@ -62,7 +62,7 @@ class JarStripperProcessor : public ZipExtractorProcessor {
};
bool JarStripperProcessor::Accept(const char* filename, const u4 attr) {
- const int filename_len = strlen(filename);
+ const size_t filename_len = strlen(filename);
if (filename_len >= CLASS_EXTENSION_LENGTH) {
return strcmp(filename + filename_len - CLASS_EXTENSION_LENGTH,
CLASS_EXTENSION) == 0;