summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/audio_core/cubeb_sink.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_core/cubeb_sink.cpp b/src/audio_core/cubeb_sink.cpp
index 79155a7a0..0a808b585 100644
--- a/src/audio_core/cubeb_sink.cpp
+++ b/src/audio_core/cubeb_sink.cpp
@@ -119,10 +119,10 @@ CubebSink::CubebSink(std::string target_device_name) {
119 LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported"); 119 LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported");
120 } else { 120 } else {
121 const auto collection_end{collection.device + collection.count}; 121 const auto collection_end{collection.device + collection.count};
122 const auto device{std::find_if(collection.device, collection_end, 122 const auto device{
123 [&](const cubeb_device_info& device) { 123 std::find_if(collection.device, collection_end, [&](const cubeb_device_info& info) {
124 return target_device_name == device.friendly_name; 124 return target_device_name == info.friendly_name;
125 })}; 125 })};
126 if (device != collection_end) { 126 if (device != collection_end) {
127 output_device = device->devid; 127 output_device = device->devid;
128 } 128 }