Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
487b2b1e
Commit
487b2b1e
authored
Mar 03, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use (void) instead of VLC_UNUSED (with pierre agreement)
parent
9db336f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/network/rootwrap.c
src/network/rootwrap.c
+5
-5
No files found.
src/network/rootwrap.c
View file @
487b2b1e
...
...
@@ -442,11 +442,11 @@ void rootwrap (void)
int
rootwrap_bind
(
int
family
,
int
socktype
,
int
protocol
,
const
struct
sockaddr
*
addr
,
size_t
alen
)
{
VLC_UNUSED
(
family
)
;
VLC_UNUSED
(
socktype
)
;
VLC_UNUSED
(
protocol
)
;
VLC_UNUSED
(
addr
)
;
VLC_UNUSED
(
alen
)
;
(
void
)
family
;
(
void
)
socktype
;
(
void
)
protocol
;
(
void
)
addr
;
(
void
)
alen
;
return
-
1
;
}
...
...
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