summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-01-24 06:00:27 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-01-24 06:00:27 +0100
commit14be4eb8ce5389a09d341522f55f6ff5956c9273 (patch)
tree437fb921f2f3dcd347a1aca597dd991b9e6c1a67 /install.cpp
parentMerge "bootctrl HAL uses "default" service name" am: cf1af460d5 (diff)
parentMerge "Print with newline for ui_print." (diff)
downloadandroid_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.tar
android_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.tar.gz
android_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.tar.bz2
android_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.tar.lz
android_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.tar.xz
android_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.tar.zst
android_bootable_recovery-14be4eb8ce5389a09d341522f55f6ff5956c9273.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/install.cpp b/install.cpp
index 9bb1216cf..553ebae10 100644
--- a/install.cpp
+++ b/install.cpp
@@ -420,11 +420,7 @@ static int try_update_binary(const char* path, ZipArchiveHandle zip, bool* wipe_
LOG(ERROR) << "invalid \"set_progress\" parameters: " << line;
}
} else if (command == "ui_print") {
- if (!args.empty()) {
- ui->PrintOnScreenOnly("%s", args.c_str());
- } else {
- ui->PrintOnScreenOnly("\n");
- }
+ ui->PrintOnScreenOnly("%s\n", args.c_str());
fflush(stdout);
} else if (command == "wipe_cache") {
*wipe_cache = true;