[vlc-commits] [Git][videolan/vlc][master] qt: fix unused variable warning in tests

Steve Lhomme (@robUx4) gitlab at videolan.org
Thu Feb 27 10:08:59 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
402b12e3 by Steve Lhomme at 2025-02-27T09:51:02+00:00
qt: fix unused variable warning in tests

- - - - -


1 changed file:

- modules/gui/qt/tests/vlc_stub_modules.cpp


Changes:

=====================================
modules/gui/qt/tests/vlc_stub_modules.cpp
=====================================
@@ -114,18 +114,18 @@ static void CloseIntf( vlc_object_t *p_this )
 
 //Medialib module
 
-static void* MLGet( vlc_medialibrary_module_t* module, int query, va_list args )
+static void* MLGet( vlc_medialibrary_module_t*, int, va_list )
 {
     return nullptr;
 }
 
-static int MLList( vlc_medialibrary_module_t* module, int query,
-                const vlc_ml_query_params_t* params, va_list args )
+static int MLList( vlc_medialibrary_module_t*, int,
+                const vlc_ml_query_params_t*, va_list )
 {
     return VLC_EGENERIC;
 }
 
-static int MLControl( vlc_medialibrary_module_t* module, int query, va_list args )
+static int MLControl( vlc_medialibrary_module_t*, int, va_list )
 {
     return VLC_EGENERIC;
 }



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/402b12e3d3d91531a18bf393fa1a203dd33a10cc

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/402b12e3d3d91531a18bf393fa1a203dd33a10cc
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