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-07-02 00:42:28 +0200
commit3d177d055c9cf3571e4b7c098818b454d1dbf9d7 (patch)
tree1f9841903bccde2c88ee8be32aa507cccaa6b02e /install.c
parentMerge "support userdata and cache partitions using emmc/ext4 instead of mtd/yaffs" (diff)
downloadandroid_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.gz
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.bz2
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.lz
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.xz
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.zst
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.zip
Diffstat (limited to '')
-rw-r--r--install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.c b/install.c
index 35ba6ca70..20e899854 100644
--- a/install.c
+++ b/install.c
@@ -109,7 +109,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]);