diff options
author | Chih-Hung Hsieh <chh@google.com> | 2016-04-18 20:30:55 +0200 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2016-04-18 21:29:30 +0200 |
commit | 54a2747ef305c10d07d8db393125dbcbb461c428 (patch) | |
tree | ad6f90bea569c5f01bbf9485e356dcdb035d79c5 /applypatch/applypatch.cpp | |
parent | Merge "Fix IWYU errors." (diff) | |
download | android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.gz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.bz2 android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.lz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.xz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.zst android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.zip |
Diffstat (limited to '')
-rw-r--r-- | applypatch/applypatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applypatch/applypatch.cpp b/applypatch/applypatch.cpp index c8594c283..270fde5c4 100644 --- a/applypatch/applypatch.cpp +++ b/applypatch/applypatch.cpp @@ -596,7 +596,7 @@ size_t FreeSpaceForFile(const char* filename) { int CacheSizeCheck(size_t bytes) { if (MakeFreeSpaceOnCache(bytes) < 0) { - printf("unable to make %ld bytes available on /cache\n", (long)bytes); + printf("unable to make %zu bytes available on /cache\n", bytes); return 1; } else { return 0; |