summaryrefslogtreecommitdiffstats
path: root/ui.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-15 20:14:51 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-15 20:14:51 +0200
commit9f89b0e4673f0e28066ba41321dc9e626e04c64f (patch)
tree41ec0075fa7181d1103bacdbce2fa1c9454eb136 /ui.c
parentam 8674a726: (cherry-pick) support installing any .zip file on the sdcard (diff)
parentsupport for ext4/EMMC filesystems in updater binary (diff)
downloadandroid_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 'ui.c')
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 01c37c079..13df1696d 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);