dshowsrcwrapper: fix typo in variable name

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1538>
This commit is contained in:
Jérôme Laheurte 2020-08-25 10:49:11 +02:00
parent 258b2b15dc
commit 02666d929f

View file

@ -446,7 +446,7 @@ gst_dshow_select_device (const GUID * device_category,
} else if (!device && device_name && g_strcmp0 (device_name, entry->device_name) == 0) {
selected = entry;
break;
} else if (!device && !deviceName && device_index == entry->device_index) {
} else if (!device && !device_name && device_index == entry->device_index) {
selected = entry;
break;
}