summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorcelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-07 16:01:20 +0000
committercelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-07 16:01:20 +0000
commit41ca5bd82328576e84d19923b5cfda6d7b218e9f (patch)
tree70336a3f3541630903a9a42c5834f1b5901c1462 /src/map/npc.c
parentec11a6a46dcb98508758d0fb96d18194f28450c5 (diff)
downloadhercules-41ca5bd82328576e84d19923b5cfda6d7b218e9f.tar.gz
hercules-41ca5bd82328576e84d19923b5cfda6d7b218e9f.tar.bz2
hercules-41ca5bd82328576e84d19923b5cfda6d7b218e9f.tar.xz
hercules-41ca5bd82328576e84d19923b5cfda6d7b218e9f.zip
Replaced some free's with aFree
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1208 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 89837da77..7634c0d0b 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -1889,7 +1889,7 @@ static int npc_parse_script(char *w1,char *w2,char *w3,char *w4,char *first_line
ev2 = strdb_search(ev_db,buf);
if(ev2 != NULL) {
printf("npc_parse_script : duplicate event %s\n",buf);
- free(ev2);
+ aFree(ev2);
}
strdb_insert(ev_db,buf,ev);
}