Commit 34f24dcd authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix compiler warning, remove unused variables

parent 810e9acc
...@@ -297,7 +297,6 @@ static int DemuxOpen( vlc_object_t * p_this ) ...@@ -297,7 +297,6 @@ static int DemuxOpen( vlc_object_t * p_this )
*****************************************************************************/ *****************************************************************************/
static void DemuxClose( vlc_object_t *p_this ) static void DemuxClose( vlc_object_t *p_this )
{ {
demux_t *p_demux = (demux_t*)p_this;
return; return;
} }
...@@ -352,7 +351,6 @@ static int ParseLine ( demux_t *p_demux, char *psz_line ) ...@@ -352,7 +351,6 @@ static int ParseLine ( demux_t *p_demux, char *psz_line )
*****************************************************************************/ *****************************************************************************/
static int Demux ( demux_t *p_demux ) static int Demux ( demux_t *p_demux )
{ {
demux_sys_t *p_sys = p_demux->p_sys;
char *psz_line; char *psz_line;
while( ( psz_line = stream_ReadLine( p_demux->s ) ) ) while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
......
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