diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/conf.c | 2 | ||||
-rw-r--r-- | src/common/conf.h | 2 | ||||
-rw-r--r-- | src/common/showmsg.c | 2 | ||||
-rw-r--r-- | src/common/showmsg.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/common/conf.c b/src/common/conf.c index 3057bd4dc..6802f728b 100644 --- a/src/common/conf.c +++ b/src/common/conf.c @@ -2,7 +2,7 @@ // For more information, see LICENCE in the main folder #include "conf.h" -#include "libconfig.h" +#include "../../3rdparty/libconfig/libconfig.h" #include "../common/showmsg.h" // ShowError diff --git a/src/common/conf.h b/src/common/conf.h index 666853ba6..d223505db 100644 --- a/src/common/conf.h +++ b/src/common/conf.h @@ -5,7 +5,7 @@ #define _CONF_H_ #include "../common/cbasetypes.h" -#include "libconfig.h" +#include "../../3rdparty/libconfig/libconfig.h" int conf_read_file(config_t *config, const char *config_filename); int config_setting_copy(config_setting_t *parent, const config_setting_t *src); diff --git a/src/common/showmsg.c b/src/common/showmsg.c index 2a3146d35..9e0f63003 100644 --- a/src/common/showmsg.c +++ b/src/common/showmsg.c @@ -13,7 +13,7 @@ #include <time.h> #include <stdlib.h> // atexit -#include "libconfig.h" +#include "../../3rdparty/libconfig/libconfig.h" #ifdef WIN32 #include "../common/winapi.h" diff --git a/src/common/showmsg.h b/src/common/showmsg.h index a88985770..59a0d9538 100644 --- a/src/common/showmsg.h +++ b/src/common/showmsg.h @@ -6,7 +6,7 @@ #define _SHOWMSG_H_ #ifndef _HPMi_H_ - #include "libconfig.h" + #include "../../3rdparty/libconfig/libconfig.h" #endif // for help with the console colors look here: // http://www.edoceo.com/liberum/?doc=printf-with-color |