summaryrefslogtreecommitdiffstats
path: root/ui.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 /ui.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 'ui.c')
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index ef2125743..3bb2c2a9b 100644
--- a/ui.c
+++ b/ui.c
@@ -404,7 +404,7 @@ void ui_print(const char *fmt, ...)
vsnprintf(buf, 256, fmt, ap);
va_end(ap);
- fputs(buf, stderr);
+ fputs(buf, stdout);
// This can get called before ui_init(), so be careful.
pthread_mutex_lock(&gUpdateMutex);