summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2014-03-14 17:39:48 +0100
committerMark Salyzyn <salyzyn@google.com>2014-03-14 21:51:39 +0100
commitf3bb31c32fa879ccce358c15c93b7bd8582d1756 (patch)
tree0ce9c3520be76db70f29a63fca0b895a028934af /updater
parentMerge "separate fbdev-specific code out from minui" (diff)
downloadandroid_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar
android_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.gz
android_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.bz2
android_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.lz
android_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.xz
android_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.zst
android_bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/install.c b/updater/install.c
index 6a8a6b3fc..1455557ca 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -864,7 +864,7 @@ Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
buffer = malloc(st.st_size+1);
if (buffer == NULL) {
- ErrorAbort(state, "%s: failed to alloc %lld bytes", name, st.st_size+1);
+ ErrorAbort(state, "%s: failed to alloc %lld bytes", name, (long long)st.st_size+1);
goto done;
}
@@ -877,7 +877,7 @@ Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
if (fread(buffer, 1, st.st_size, f) != st.st_size) {
ErrorAbort(state, "%s: failed to read %lld bytes from %s",
- name, st.st_size+1, filename);
+ name, (long long)st.st_size+1, filename);
fclose(f);
goto done;
}