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

Commit 76864116 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Use parens to fix output" am: dfdcdaf0 am: 0b907b46

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1982346

Change-Id: Ic09bcb3f04e8fd5c8663aa3ffdd7f7c1ef8be82a
parents ae389f2b 0b907b46
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -426,8 +426,8 @@ void BluetoothAudioSession::ReportLowLatencyModeAllowedChanged(bool allowed) {
  for (auto& observer : observers_) {
    uint16_t cookie = observer.first;
    std::shared_ptr<PortStatusCallbacks> callback = observer.second;
    LOG(INFO) << __func__ << " - allowed="
              << allowed ? " allowed" : " disallowed";
    LOG(INFO) << __func__
              << " - allowed=" << (allowed ? " allowed" : " disallowed");
    callback->low_latency_mode_allowed_cb_(cookie, allowed);
  }
}