diff options
author | Doug Zongker <dougz@android.com> | 2009-06-12 17:25:38 +0200 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-06-12 17:25:38 +0200 |
commit | 6c301e244d0d14e3b2983350d7c383abf52b89f7 (patch) | |
tree | c6d6705c9cf240991a29b4773180691afadaf623 /install.c | |
parent | fix simulator build by excluding more of recovery (diff) | |
parent | edify extensions for OTA package installation, part 1 (diff) | |
download | android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.gz android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.bz2 android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.lz android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.xz android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.zst android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.zip |
Diffstat (limited to 'install.c')
-rw-r--r-- | install.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -256,7 +256,7 @@ try_update_binary(const char *path, ZipArchive *zip) { int status; waitpid(pid, &status, 0); if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { - LOGE("Error in %s\n(Status %d)\n", path, status); + LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status)); return INSTALL_ERROR; } |