Fix building by explicitly casting const out in config.c

This commit is contained in:
Stanislav Laznicka 2019-12-06 14:32:19 +01:00
parent cba0333fc5
commit f154478caf
No known key found for this signature in database
GPG Key ID: C98C414936B1A7F3
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ void config_load(const char *cfg_path)
config.sections = sections; config.sections = sections;
config.sections_len = sections_len; config.sections_len = sections_len;
configator(&config, cfg_path); configator(&config, (char *) cfg_path);
} }
void lang_defaults() void lang_defaults()