diff options
author | Chih-Hung Hsieh <chh@google.com> | 2016-04-19 00:29:19 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-04-19 00:29:19 +0200 |
commit | bcad1d1ced730478c94f951034d252e777661332 (patch) | |
tree | ad6f90bea569c5f01bbf9485e356dcdb035d79c5 /updater | |
parent | Merge "Fix IWYU errors." (diff) | |
parent | Merge "Fix google-runtime-int warnings." (diff) | |
download | android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.tar android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.tar.gz android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.tar.bz2 android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.tar.lz android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.tar.xz android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.tar.zst android_bootable_recovery-bcad1d1ced730478c94f951034d252e777661332.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/install.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/updater/install.cpp b/updater/install.cpp index 925604f31..4f5268401 100644 --- a/updater/install.cpp +++ b/updater/install.cpp @@ -602,8 +602,8 @@ Value* PackageExtractFileFn(const char* name, State* state, v->size = mzGetZipEntryUncompLen(entry); v->data = reinterpret_cast<char*>(malloc(v->size)); if (v->data == NULL) { - printf("%s: failed to allocate %ld bytes for %s\n", - name, (long)v->size, zip_path); + printf("%s: failed to allocate %zd bytes for %s\n", + name, v->size, zip_path); goto done1; } @@ -992,7 +992,8 @@ Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) { buffer = reinterpret_cast<char*>(malloc(st.st_size+1)); if (buffer == NULL) { - ErrorAbort(state, "%s: failed to alloc %lld bytes", name, (long long)st.st_size+1); + ErrorAbort(state, "%s: failed to alloc %zu bytes", name, + static_cast<size_t>(st.st_size+1)); goto done; } @@ -1004,8 +1005,8 @@ Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) { } if (ota_fread(buffer, 1, st.st_size, f) != static_cast<size_t>(st.st_size)) { - ErrorAbort(state, "%s: failed to read %lld bytes from %s", - name, (long long)st.st_size+1, filename); + ErrorAbort(state, "%s: failed to read %zu bytes from %s", + name, static_cast<size_t>(st.st_size), filename); ota_fclose(f); goto done; } |