Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
450
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
402b12e3
Commit
402b12e3
authored
1 month ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
qt: fix unused variable warning in tests
parent
94131dd8
No related branches found
Branches containing commit
No related tags found
1 merge request
!6945
qt: fix unused variable warning in tests
Pipeline
#571237
passed with stage
in 16 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/gui/qt/tests/vlc_stub_modules.cpp
+4
-4
4 additions, 4 deletions
modules/gui/qt/tests/vlc_stub_modules.cpp
with
4 additions
and
4 deletions
modules/gui/qt/tests/vlc_stub_modules.cpp
+
4
−
4
View file @
402b12e3
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment