summaryrefslogtreecommitdiffstats
path: root/applypatch/applypatch.cpp
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-04-19 00:19:06 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-04-19 00:19:06 +0200
commita1f4a1ec3319ee1ab869a46805bff63550b56ca7 (patch)
treead6f90bea569c5f01bbf9485e356dcdb035d79c5 /applypatch/applypatch.cpp
parentMerge "Fix IWYU errors." (diff)
parentFix google-runtime-int warnings. (diff)
downloadandroid_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.tar
android_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.tar.gz
android_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.tar.bz2
android_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.tar.lz
android_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.tar.xz
android_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.tar.zst
android_bootable_recovery-a1f4a1ec3319ee1ab869a46805bff63550b56ca7.zip
Diffstat (limited to 'applypatch/applypatch.cpp')
-rw-r--r--applypatch/applypatch.cpp2
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;