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

Add const qualifier

Signed-off-by: default avatarRémi Denis-Courmont <rem@videolan.org>
parent 7eb1f4a0
......@@ -217,7 +217,7 @@ static void SDPHandleUrl( sout_stream_t *, char * );
static int SapSetup( sout_stream_t *p_stream );
static int FileSetup( sout_stream_t *p_stream );
static int HttpSetup( sout_stream_t *p_stream, vlc_url_t * );
static int HttpSetup( sout_stream_t *p_stream, const vlc_url_t * );
struct sout_stream_sys_t
{
......@@ -1312,7 +1312,7 @@ static int HttpCallback( httpd_file_sys_t *p_args,
httpd_file_t *, uint8_t *p_request,
uint8_t **pp_data, int *pi_data );
static int HttpSetup( sout_stream_t *p_stream, vlc_url_t *url)
static int HttpSetup( sout_stream_t *p_stream, const vlc_url_t *url)
{
sout_stream_sys_t *p_sys = p_stream->p_sys;
......
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