0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

vlc-video: Fix compiler warnings

This commit is contained in:
PatTheMav 2021-06-09 21:10:27 +02:00 committed by Ryan Foster
parent a97f8b7128
commit 4ac3299575

View File

@ -547,7 +547,7 @@ static bool valid_extension(const char *ext)
if (!ext || !*ext)
return false;
b = EXTENSIONS_MEDIA + 1;
b = &EXTENSIONS_MEDIA[1];
e = strchr(b, ';');
for (;;) {