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-09-15 20:10:02 +0200
commit56c5105bd7096704eaed35329b2c8c84cc282867 (patch)
tree41ec0075fa7181d1103bacdbce2fa1c9454eb136 /ui.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 '')
-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);