summaryrefslogtreecommitdiffstats
path: root/install.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-07-01 18:18:44 +0200
committerDoug Zongker <dougz@android.com>2010-09-15 20:10:02 +0200
commit56c5105bd7096704eaed35329b2c8c84cc282867 (patch)
tree41ec0075fa7181d1103bacdbce2fa1c9454eb136 /install.c
parent(cherry-pick) support installing any .zip file on the sdcard (diff)
downloadandroid_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.tar
android_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.tar.gz
android_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.tar.bz2
android_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.tar.lz
android_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.tar.xz
android_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.tar.zst
android_bootable_recovery-56c5105bd7096704eaed35329b2c8c84cc282867.zip
Diffstat (limited to 'install.c')
-rw-r--r--install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.c b/install.c
index 40f182d77..2619a0cc0 100644
--- a/install.c
+++ b/install.c
@@ -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]);