summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-08-26 15:03:22 +0200
committerGitHub <noreply@github.com>2018-08-26 15:03:22 +0200
commit42f36d1ee5dcc89e288c6ac128be0ff6ed0985e0 (patch)
tree4b164ce3b338c216787403e79898facb00834231 /src/map/npc.c
parent234189f34e5f055c82654b8cd35330822e8aa4d7 (diff)
parent4da22050a04f9cd45097dbdc678ab20971f5570b (diff)
downloadhercules-42f36d1ee5dcc89e288c6ac128be0ff6ed0985e0.tar.gz
hercules-42f36d1ee5dcc89e288c6ac128be0ff6ed0985e0.tar.bz2
hercules-42f36d1ee5dcc89e288c6ac128be0ff6ed0985e0.tar.xz
hercules-42f36d1ee5dcc89e288c6ac128be0ff6ed0985e0.zip
Merge pull request #2189 from MishimaHaruna/c11
Change the language specification to C11 in the autoconf-based builds
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index f80f8443a..a49fb08eb 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -2868,7 +2868,7 @@ static const char *npc_parse_shop(const char *w1, const char *w2, const char *w3
struct npc_item_list *items = NULL;
size_t items_count = 40; // Starting items size
- char *p;
+ const char *p;
int x, y, dir, m, i, class_;
struct npc_data *nd;
enum npc_subtype type;