summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2016-12-14 21:28:31 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-12-14 21:28:31 +0100
commit2bb3a2270e195f957c0f5388c8cb5670bd07758d (patch)
tree8af934f07c0008201c9a31f0e5c5330398963638
parentMerge "Remove the obsolete comments for firmware update." (diff)
parentupdater: Fix the operator order. (diff)
downloadandroid_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.tar
android_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.tar.gz
android_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.tar.bz2
android_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.tar.lz
android_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.tar.xz
android_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.tar.zst
android_bootable_recovery-2bb3a2270e195f957c0f5388c8cb5670bd07758d.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.";