cubeb_sink: Get rid of variable shadowing within CubebSink's constructor

The parameter of the lambda was shadowing the variable that was being
assigned to.
This commit is contained in:
Lioncash 2018-09-14 12:20:48 -04:00 committed by fearlessTobi
parent 80cdfe1c45
commit bcb1aaf05c

View file

@ -53,11 +53,11 @@ CubebSink::CubebSink(std::string target_device_name) : impl(std::make_unique<Imp
if (cubeb_enumerate_devices(impl->ctx, CUBEB_DEVICE_TYPE_OUTPUT, &collection) != CUBEB_OK) { if (cubeb_enumerate_devices(impl->ctx, CUBEB_DEVICE_TYPE_OUTPUT, &collection) != CUBEB_OK) {
LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported"); LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported");
} else { } else {
const auto collection_end = collection.device + collection.count; const auto collection_end{collection.device + collection.count};
const auto device = std::find_if(collection.device, collection_end, const auto device{
[&](const cubeb_device_info& device) { std::find_if(collection.device, collection_end, [&](const cubeb_device_info& info) {
return target_device_name == device.friendly_name; return target_device_name == info.friendly_name;
}); })};
if (device != collection_end) { if (device != collection_end) {
output_device = device->devid; output_device = device->devid;
} }