diff options
author | Tao Bao <tbao@google.com> | 2016-12-14 21:40:52 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-12-14 21:40:52 +0100 |
commit | e97575e7ae4c5a540381d89b81eea1c5a142b639 (patch) | |
tree | ee92a57aa82481a7fe7e81860736f1ae6d52a6e3 /updater/blockimg.cpp | |
parent | Merge "Remove the obsolete comments for firmware update." am: 833ecb03f2 (diff) | |
parent | Merge "updater: Fix the operator order." (diff) | |
download | android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.tar android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.tar.gz android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.tar.bz2 android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.tar.lz android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.tar.xz android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.tar.zst android_bootable_recovery-e97575e7ae4c5a540381d89b81eea1c5a142b639.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/blockimg.cpp | 2 |
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."; |