From a99c18b7fa05e9d152f210a94557217cb5f2c957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20L=C3=A1zni=C4=8Dka?= Date: Fri, 6 Dec 2019 16:15:08 +0100 Subject: [PATCH] Fix building by explicitly casting const out in config.c (#155) --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 129d10f..b2d8bc4 100644 --- a/src/config.c +++ b/src/config.c @@ -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()