1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

http: psz_dir is not meant to be a const

This commit is contained in:
Rafaël Carré 2007-10-09 14:08:55 +00:00
parent 97c5433133
commit 731efe545d
2 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ mvar_t *E_(mvar_InputVarSetNew)( intf_thread_t *p_intf, char *name,
/** This function creates a set variable representing the files of the psz_dir
* directory */
mvar_t *E_(mvar_FileSetNew)( intf_thread_t *p_intf, char *name,
const char *psz_dir );
char *psz_dir );
/** This function creates a set variable representing the VLM streams */
mvar_t *E_(mvar_VlmSetNew)( char *name, vlm_t *vlm );

View File

@ -506,7 +506,7 @@ mvar_t *E_(mvar_HttpdInfoSetNew)( char *name, httpd_t *p_httpd, int i_type )
#endif
mvar_t *E_(mvar_FileSetNew)( intf_thread_t *p_intf, char *name,
const char *psz_dir )
char *psz_dir )
{
mvar_t *s = E_(mvar_New)( name, "set" );
#ifdef HAVE_SYS_STAT_H