Merge "updater: Fix the operator order."

This commit is contained in:
Treehugger Robot 2016-12-14 20:28:31 +00:00 committed by Gerrit Code Review
commit 2bb3a2270e

View file

@ -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.";