diff options
author | Doug Zongker <dougz@android.com> | 2010-09-15 20:14:51 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-09-15 20:14:51 +0200 |
commit | 9f89b0e4673f0e28066ba41321dc9e626e04c64f (patch) | |
tree | 41ec0075fa7181d1103bacdbce2fa1c9454eb136 /install.c | |
parent | am 8674a726: (cherry-pick) support installing any .zip file on the sdcard (diff) | |
parent | support for ext4/EMMC filesystems in updater binary (diff) | |
download | android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.tar android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.tar.gz android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.tar.bz2 android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.tar.lz android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.tar.xz android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.tar.zst android_bootable_recovery-9f89b0e4673f0e28066ba41321dc9e626e04c64f.zip |
Diffstat (limited to 'install.c')
-rw-r--r-- | install.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ try_update_binary(const char *path, ZipArchive *zip) { if (pid == 0) { close(pipefd[0]); execv(binary, args); - fprintf(stderr, "E:Can't run %s (%s)\n", binary, strerror(errno)); + fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno)); _exit(-1); } close(pipefd[1]); |