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

Fix config_IsSafe() declaration warning

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 53fbcade
......@@ -61,6 +61,8 @@ static inline bool IsConfigFloatType (int type)
extern vlc_rwlock_t config_lock;
bool config_IsSafe (const char *);
/* The configuration file */
#define CONFIG_FILE "vlcrc"
......
......@@ -235,8 +235,6 @@ extern const size_t libvlc_config_count;
* Variables stuff
*/
void var_OptionParse (vlc_object_t *, const char *, bool trusted);
bool config_IsSafe (const char *);
/*
* Stats stuff
......
......@@ -37,6 +37,7 @@
#endif
#include "libvlc.h"
#include "config/configuration.h"
#include <assert.h>
#include <math.h>
......
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