diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-03-14 22:35:41 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-14 22:35:41 +0100 |
commit | 679baa06b79e0c9100ce05fa0191928fc2a691fb (patch) | |
tree | d09a8d683cf713935e395168e403d1fbd61ea971 /updater/install.c | |
parent | am 239fb930: am a7266ef0: Merge "separate fbdev-specific code out from minui" (diff) | |
parent | am 026ebe02: Merge "Recovery 64-bit compile issues" (diff) | |
download | android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.tar android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.tar.gz android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.tar.bz2 android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.tar.lz android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.tar.xz android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.tar.zst android_bootable_recovery-679baa06b79e0c9100ce05fa0191928fc2a691fb.zip |
Diffstat (limited to 'updater/install.c')
-rw-r--r-- | updater/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/install.c b/updater/install.c index faa1bb2f5..53f5e48cb 100644 --- a/updater/install.c +++ b/updater/install.c @@ -955,7 +955,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; } @@ -968,7 +968,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; } |