Commit 6be4bda5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix compiler warning

parent 08cb8e62
...@@ -131,7 +131,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -131,7 +131,7 @@ static int Open( vlc_object_t *p_this )
sout_access_out_t *p_access; sout_access_out_t *p_access;
sout_mux_t *p_mux; sout_mux_t *p_mux;
char *psz_mux_byext = NULL; const char *psz_mux_byext = NULL;
config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
p_stream->p_cfg ); p_stream->p_cfg );
...@@ -178,7 +178,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -178,7 +178,7 @@ static int Open( vlc_object_t *p_this )
{ "wav","wav" }, { "wav","wav" },
{ NULL, NULL } { NULL, NULL }
}; };
char *psz_ext = strrchr( psz_url, '.' ) + 1; const char *psz_ext = strrchr( psz_url, '.' ) + 1;
int i; int i;
msg_Dbg( p_this, "extension is %s", psz_ext ); msg_Dbg( p_this, "extension is %s", psz_ext );
......
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