From 4ac32995752a93bfad8d897aa21eef92edad0172 Mon Sep 17 00:00:00 2001 From: PatTheMav Date: Wed, 9 Jun 2021 21:10:27 +0200 Subject: [PATCH] vlc-video: Fix compiler warnings --- plugins/vlc-video/vlc-video-source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vlc-video/vlc-video-source.c b/plugins/vlc-video/vlc-video-source.c index 3ed181e19..6799f624c 100644 --- a/plugins/vlc-video/vlc-video-source.c +++ b/plugins/vlc-video/vlc-video-source.c @@ -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 (;;) {