Fix building by explicitly casting const out in config.c (#155)

pull/222/head
Stanislav Láznička 5 years ago committed by nullgemm
parent ecaea4131b
commit a99c18b7fa

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

Loading…
Cancel
Save