Commit 6a46d6cc authored by Laurent Aimar's avatar Laurent Aimar

Small warning fix.

parent 684012f9
......@@ -903,7 +903,7 @@ static int Request( access_t *p_access, int64_t i_tell )
}
else
{
char *psz_path = p_sys->url.psz_path;
const char *psz_path = p_sys->url.psz_path;
if( !psz_path || !*psz_path )
{
psz_path = "/";
......
......@@ -142,7 +142,7 @@ static void Close( vlc_object_t * );
static int i_norm_list[] =
{ VIDEO_MODE_AUTO, VIDEO_MODE_SECAM, VIDEO_MODE_PAL, VIDEO_MODE_NTSC };
static char *psz_norm_list_text[] =
static const char *psz_norm_list_text[] =
{ N_("Automatic"), N_("SECAM"), N_("PAL"), N_("NTSC") };
vlc_module_begin();
......
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