From 46afaed6555abf5cfdb979e7b1e0b3a619ee36ae Mon Sep 17 00:00:00 2001 From: Paradox924X Date: Sat, 9 Oct 2010 01:57:04 +0000 Subject: Replaced all nullpo_retr() calls which returned 0 with nullpo_ret() calls. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14414 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/quest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/quest.c') diff --git a/src/map/quest.c b/src/map/quest.c index 13b8872eb..d751b27ff 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -190,8 +190,8 @@ int quest_update_objective_sub(struct block_list *bl, va_list ap) struct map_session_data * sd; int mob, party; - nullpo_retr(0, bl); - nullpo_retr(0, sd = (struct map_session_data *)bl); + nullpo_ret(bl); + nullpo_ret(sd = (struct map_session_data *)bl); party = va_arg(ap,int); mob = va_arg(ap,int); -- cgit v1.2.3-60-g2f50