diff options
author | Haru <haru@dotalux.com> | 2016-10-01 00:16:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-01 00:16:21 +0200 |
commit | dd71362b10e5986e034ed86db08961926440ace0 (patch) | |
tree | 119c8d409657cee1d90cd0c072ef3b7e846fa3f0 /src/map/quest.c | |
parent | 84ecefb4db23bbd98194a43a592cfe313477a1ab (diff) | |
parent | 2000a698da35915afb1a598433337a735d27ae24 (diff) | |
download | hercules-dd71362b10e5986e034ed86db08961926440ace0.tar.gz hercules-dd71362b10e5986e034ed86db08961926440ace0.tar.bz2 hercules-dd71362b10e5986e034ed86db08961926440ace0.tar.xz hercules-dd71362b10e5986e034ed86db08961926440ace0.zip |
Merge pull request #1450 from 4144/gcc7fixes
Add different fixes for gcc 7 warnings.
Diffstat (limited to 'src/map/quest.c')
-rw-r--r-- | src/map/quest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/quest.c b/src/map/quest.c index ecaa8720e..544ddf985 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -541,7 +541,7 @@ int quest_read_db(void) int i = 0, count = 0; const char *filename = "quest_db.conf"; - sprintf(filepath, "%s/%s", map->db_path, filename); + snprintf(filepath, 256, "%s/%s", map->db_path, filename); if (!libconfig->load_file(&quest_db_conf, filepath)) return -1; |