Commit eac783c0 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

src: Fix an unused var warning plus an invalid conversion warning in libvlc-common.c.

parent 01a95e76
...@@ -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
vlc_object_t *p_vlm; ///< vlm if created from libvlc-common. vlm_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)
......
...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment