diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-17 12:26:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 12:26:29 -0400 |
commit | 59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf (patch) | |
tree | 7023d6ed2838109d7da11859ff65c7215cd30b1d /src/audio_core | |
parent | e6367ab955b8ced2acfe1b191f812e1b442fe2ae (diff) | |
parent | fc669a97d4a5d901c1a70a7c7de79a58efd8db35 (diff) |
Merge pull request #1321 from lioncash/audio-shadow
cubeb_sink: Get rid of variable shadowing within CubebSink's constructor
Diffstat (limited to 'src/audio_core')
-rw-r--r-- | src/audio_core/cubeb_sink.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_core/cubeb_sink.cpp b/src/audio_core/cubeb_sink.cpp index 998a9d159..392039688 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) { LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported"); } else { const auto collection_end{collection.device + collection.count}; - const auto device{std::find_if(collection.device, collection_end, - [&](const cubeb_device_info& device) { - return target_device_name == device.friendly_name; - })}; + const auto device{ + std::find_if(collection.device, collection_end, [&](const cubeb_device_info& info) { + return target_device_name == info.friendly_name; + })}; if (device != collection_end) { output_device = device->devid; } |