commit | eabad880a06426ff6b9ba25aca2b61fd5318bcac | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Sat Feb 12 08:25:14 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Feb 12 08:25:14 2022 +0000 |
tree | 9adbcc289ff150eaccb7fdd19d1010832e3d2ab4 | |
parent | 118641434ae0b10ab39c63ce5c1fa5e4af0811ea [diff] | |
parent | 768641163799d430ab54e0c7d41aea4e0968ef8d [diff] |
Merge "Use parens to fix output" am: dfdcdaf09d am: 0b907b4638 am: 7686411637 Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1982346 Change-Id: I4210ff51c07fc4bcccfb74fd44d91b690535d86b
diff --git a/bluetooth/audio/utils/aidl_session/BluetoothAudioSession.cpp b/bluetooth/audio/utils/aidl_session/BluetoothAudioSession.cpp index 967b6f3..b90a656 100644 --- a/bluetooth/audio/utils/aidl_session/BluetoothAudioSession.cpp +++ b/bluetooth/audio/utils/aidl_session/BluetoothAudioSession.cpp
@@ -426,8 +426,8 @@ 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); } } @@ -599,4 +599,4 @@ } // namespace bluetooth } // namespace hardware } // namespace android -} // namespace aidl \ No newline at end of file +} // namespace aidl