summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-12-14 21:53:22 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-12-14 21:53:22 +0100
commit27f68794eb9c8e625520739226351475dda125b6 (patch)
treee89cff5f926361352e0956adc9042378082af1e2
parentMerge "Remove the obsolete comments for firmware update." am: 833ecb03f2 am: 527f08ed0b am: 1871a2feeb (diff)
parentMerge "updater: Fix the operator order." am: 2bb3a2270e am: f7f3f821a8 (diff)
downloadandroid_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.tar
android_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.tar.gz
android_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.tar.bz2
android_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.tar.lz
android_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.tar.xz
android_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.tar.zst
android_bootable_recovery-27f68794eb9c8e625520739226351475dda125b6.zip
-rw-r--r--updater/blockimg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index 7257e2399..4dadceb5e 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -1358,7 +1358,7 @@ static Value* PerformBlockImageUpdate(const char* name, State* state, int /* arg
CommandParameters params = {};
params.canwrite = !dryrun;
- LOG(INFO) << "performing " << dryrun ? "verification" : "update";
+ LOG(INFO) << "performing " << (dryrun ? "verification" : "update");
if (state->is_retry) {
is_retry = true;
LOG(INFO) << "This update is a retry.";