Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
ae4679b7
Commit
ae4679b7
authored
Nov 23, 2013
by
Maxim Bublis
Committed by
Rémi Denis-Courmont
Nov 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed warnings on duplicate const modifiers
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
9a0de97a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/misc/objects.c
src/misc/objects.c
+2
-2
No files found.
src/misc/objects.c
View file @
ae4679b7
...
...
@@ -437,10 +437,10 @@ vlc_object_t *vlc_object_find_name( vlc_object_t *p_this, const char *psz_name )
/* This was officially deprecated on August 19 2009. For the convenience of
* wannabe code janitors, this is the list of names that remain used
* and unfixed since then. */
static
const
char
const
bad
[][
11
]
=
{
"adjust"
,
"clone"
,
"colorthres"
,
static
const
char
bad
[][
11
]
=
{
"adjust"
,
"clone"
,
"colorthres"
,
"erase"
,
"extract"
,
"gradient"
,
"logo"
,
"marq"
,
"motionblur"
,
"puzzle"
,
"rotate"
,
"sharpen"
,
"transform"
,
"v4l2"
,
"wall"
};
static
const
char
const
poor
[][
13
]
=
{
"invert"
,
"magnify"
,
"motiondetect"
,
static
const
char
poor
[][
13
]
=
{
"invert"
,
"magnify"
,
"motiondetect"
,
"psychedelic"
,
"ripple"
,
"wave"
};
if
(
bsearch
(
psz_name
,
bad
,
15
,
11
,
(
void
*
)
strcmp
)
==
NULL
&&
bsearch
(
psz_name
,
poor
,
6
,
13
,
(
void
*
)
strcmp
)
==
NULL
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment