vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sat Jun 3 22:56:28 2017 +0300| [a499fb22b58b907f8714549a3b5e511ad1f8de1f] | committer: Rémi Denis-Courmont
sgimb: fix mismatched types > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a499fb22b58b907f8714549a3b5e511ad1f8de1f --- modules/demux/playlist/sgimb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/demux/playlist/sgimb.c b/modules/demux/playlist/sgimb.c index bb7a7f69ad..529c9bff25 100644 --- a/modules/demux/playlist/sgimb.c +++ b/modules/demux/playlist/sgimb.c @@ -188,7 +188,7 @@ int Import_SGIMB( vlc_object_t * p_this ) *****************************************************************************/ void Close_SGIMB( vlc_object_t *p_this ) { - demux_t *p_demux = (demux_t*)p_this; + stream_t *p_demux = (stream_t*)p_this; demux_sys_t *p_sys = p_demux->p_sys; free( p_sys->psz_uri ); free( p_sys->psz_server ); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
