Skip to content
Snippets Groups Projects
Commit 402b12e3 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

qt: fix unused variable warning in tests

parent 94131dd8
No related branches found
No related tags found
1 merge request!6945qt: fix unused variable warning in tests
Pipeline #571237 passed with stage
in 16 minutes and 23 seconds
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment