[vlc-commits] [Git][videolan/vlc][master] test: es_out: fix missing 'static' warnings

Steve Lhomme (@robUx4) gitlab at videolan.org
Tue Feb 18 14:21:29 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
72cfd19a by Alexandre Janniaux at 2025-02-18T13:30:54+00:00
test: es_out: fix missing 'static' warnings

The split from 91eaf42ca74b28bc8ed7c4f52b99fa3fd0d52e6d was missing the
static qualifier for the functions, leading to warnings.

- - - - -


1 changed file:

- src/input/test/es_out.c


Changes:

=====================================
src/input/test/es_out.c
=====================================
@@ -339,7 +339,7 @@ struct vlc_logger {
     const struct vlc_logger_operations *ops;
 };
 
-void test_playback(void)
+static void test_playback(void)
 {
     vlc_list_init(&opened_decoders);
     struct vlc_logger logger = { .ops = &test_logger_operations };
@@ -449,7 +449,7 @@ void test_playback(void)
 
 }
 
-void test_multiple_programs(void)
+static void test_multiple_programs(void)
 {
     vlc_list_init(&opened_decoders);
     struct vlc_logger logger = { .ops = &test_logger_operations };



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/72cfd19a12f4fb0781b15f1c0ccff13b898b036b

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/72cfd19a12f4fb0781b15f1c0ccff13b898b036b
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list