diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-17 16:15:56 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-17 16:15:56 +0000 |
commit | 0985a47e31a4979020a87e8cb1768f6b99cf6cbf (patch) | |
tree | e23c5ebf383620df041dd32a2abda12edf80914c /src/map/npc.c | |
parent | 139b774dd07e3dab16c62956c19a571c498e1ac0 (diff) | |
download | hercules-0985a47e31a4979020a87e8cb1768f6b99cf6cbf.tar.gz hercules-0985a47e31a4979020a87e8cb1768f6b99cf6cbf.tar.bz2 hercules-0985a47e31a4979020a87e8cb1768f6b99cf6cbf.tar.xz hercules-0985a47e31a4979020a87e8cb1768f6b99cf6cbf.zip |
Corrected nullpo_retv -> nullpo_ret since npc_unload is int.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5648 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 56affa0b5..5e4797afa 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1532,7 +1532,7 @@ static int npc_unload_ev(DBKey key,void *data,va_list ap) { int npc_unload (struct npc_data *nd)
{
- nullpo_retv(nd);
+ nullpo_ret(nd);
npc_remove_map (nd);
map_deliddb(&nd->bl);
|