mirror of https://github.com/fairyglade/ly.git
Fix building by explicitly casting const out in config.c
This commit is contained in:
parent
cba0333fc5
commit
f154478caf
|
|
@ -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…
Reference in New Issue