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
eac783c0
Commit
eac783c0
authored
Apr 11, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: Fix an unused var warning plus an invalid conversion warning in libvlc-common.c.
parent
01a95e76
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
include/main.h
include/main.h
+1
-1
src/libvlc-common.c
src/libvlc-common.c
+0
-2
No files found.
include/main.h
View file @
eac783c0
...
@@ -49,7 +49,7 @@ struct libvlc_int_t
...
@@ -49,7 +49,7 @@ struct libvlc_int_t
vlc_object_t
*
p_interaction
;
///< interface interaction object
vlc_object_t
*
p_interaction
;
///< interface interaction object
vl
c_object_t
*
p_vlm
;
///< vlm if created from libvlc-common.
vl
m_t
*
p_vlm
;
///< vlm if created from libvlc-common.
/// (this is clearly private and
/// (this is clearly private and
// shouldn't be used)
// shouldn't be used)
...
...
src/libvlc-common.c
View file @
eac783c0
...
@@ -1026,8 +1026,6 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
...
@@ -1026,8 +1026,6 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
*/
*/
int
libvlc_InternalDestroy
(
libvlc_int_t
*
p_libvlc
,
vlc_bool_t
b_release
)
int
libvlc_InternalDestroy
(
libvlc_int_t
*
p_libvlc
,
vlc_bool_t
b_release
)
{
{
vlc_value_t
lockval
;
if
(
!
p_libvlc
)
if
(
!
p_libvlc
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
...
...
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