Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b497e6f3 authored by Daniel Zheng's avatar Daniel Zheng
Browse files

Fix one liner

Ensuring that the expression is evaluated before being outputed. In
response to comment from aosp/2708333

Test: th
Change-Id: I073c143f1c4e32af11e235ce782947b250117dc5
parent a2bac909
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ void CowWriterV2::InitBatchWrites() {
        current_data_pos_ = next_data_pos_;
    }

    LOG_INFO << "Batch writes: " << batch_write_ ? "enabled" : "disabled";
    LOG_INFO << "Batch writes: " << (batch_write_ ? "enabled" : "disabled");
}

void CowWriterV2::InitWorkers() {