summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-06-03 18:28:46 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-03 18:28:46 +0200
commitd107e6dc104dfb6e5043cedaf348f354f7cd46cc (patch)
treea94ee0f95bb444b33f5e18e6e393f053e4e6f5b3 /install.cpp
parentam 1441a965: Merge "Really don\'t use TEMP_FAILURE_RETRY with close in recovery." (diff)
parentMerge "Log update outputs in order" (diff)
downloadandroid_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.tar
android_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.tar.gz
android_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.tar.bz2
android_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.tar.lz
android_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.tar.xz
android_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.tar.zst
android_bootable_recovery-d107e6dc104dfb6e5043cedaf348f354f7cd46cc.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.cpp b/install.cpp
index c7d382f3e..7d88ed72a 100644
--- a/install.cpp
+++ b/install.cpp
@@ -164,9 +164,9 @@ try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache) {
} else if (strcmp(command, "ui_print") == 0) {
char* str = strtok(NULL, "\n");
if (str) {
- ui->Print("%s", str);
+ ui->PrintOnScreenOnly("%s", str);
} else {
- ui->Print("\n");
+ ui->PrintOnScreenOnly("\n");
}
fflush(stdout);
} else if (strcmp(command, "wipe_cache") == 0) {