Skip to content
Snippets Groups Projects
Commit 4bb3e03c authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

config: file: Mark config_CreateDir as static

It's not in any other file
parent 423a7851
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,6 @@ extern "C" {
/* Internal configuration prototypes and structures */
int config_CreateDir( vlc_object_t *, const char * );
int config_AutoSaveConfigFile( vlc_object_t * );
void config_Free (module_config_t *, size_t);
......
......@@ -267,7 +267,7 @@ int config_LoadConfigFile( vlc_object_t *p_this )
/*****************************************************************************
* config_CreateDir: Create configuration directory if it doesn't exist.
*****************************************************************************/
int config_CreateDir( vlc_object_t *p_this, const char *psz_dirname )
static int config_CreateDir( vlc_object_t *p_this, const char *psz_dirname )
{
if( !psz_dirname || !*psz_dirname ) return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment