summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-10-09 01:57:04 +0000
committerParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-10-09 01:57:04 +0000
commit46afaed6555abf5cfdb979e7b1e0b3a619ee36ae (patch)
tree825b8e97cad9ee3c416d327c1e5f54b1ba1204d3 /src/map/npc.c
parent5ab81c08011abb8af9a1001e7835c72c6de96142 (diff)
downloadhercules-46afaed6555abf5cfdb979e7b1e0b3a619ee36ae.tar.gz
hercules-46afaed6555abf5cfdb979e7b1e0b3a619ee36ae.tar.bz2
hercules-46afaed6555abf5cfdb979e7b1e0b3a619ee36ae.tar.xz
hercules-46afaed6555abf5cfdb979e7b1e0b3a619ee36ae.zip
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
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index e33fab291..425967da7 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -138,8 +138,8 @@ int npc_enable_sub(struct block_list *bl, va_list ap)
struct map_session_data *sd;
struct npc_data *nd;
- nullpo_retr(0, bl);
- nullpo_retr(0, nd=va_arg(ap,struct npc_data *));
+ nullpo_ret(bl);
+ nullpo_ret(nd=va_arg(ap,struct npc_data *));
if(bl->type == BL_PC && (sd=(struct map_session_data *)bl))
{
TBL_PC *sd = (TBL_PC*)bl;
@@ -202,7 +202,7 @@ struct npc_data* npc_name2id(const char* name)
*------------------------------------------*/
int npc_event_dequeue(struct map_session_data* sd)
{
- nullpo_retr(0, sd);
+ nullpo_ret(sd);
if(sd->npc_id)
{ //Current script is aborted.
@@ -276,9 +276,9 @@ int npc_event_doall_sub(DBKey key, void* data, va_list ap)
const char* name;
int rid;
- nullpo_retr(0, ev = (struct event_data *)data);
- nullpo_retr(0, c = va_arg(ap, int *));
- nullpo_retr(0, name = va_arg(ap, const char *));
+ nullpo_ret(ev = (struct event_data *)data);
+ nullpo_ret(c = va_arg(ap, int *));
+ nullpo_ret(name = va_arg(ap, const char *));
rid = va_arg(ap, int);
p = strchr(p, ':'); // match only the event name
@@ -301,9 +301,9 @@ static int npc_event_do_sub(DBKey key, void* data, va_list ap)
int* c;
const char* name;
- nullpo_retr(0, ev = (struct event_data *)data);
- nullpo_retr(0, c = va_arg(ap, int *));
- nullpo_retr(0, name = va_arg(ap, const char *));
+ nullpo_ret(ev = (struct event_data *)data);
+ nullpo_ret(c = va_arg(ap, int *));
+ nullpo_ret(name = va_arg(ap, const char *));
if( p && strcmpi(name, p) == 0 )
{
@@ -525,7 +525,7 @@ int npc_timerevent_start(struct npc_data* nd, int rid)
struct map_session_data *sd = NULL; //Player to whom script is attached.
struct timer_event_data *ted;
- nullpo_retr(0, nd);
+ nullpo_ret(nd);
// No need to start because of no events
if( nd->u.scr.timeramount == 0 )
@@ -579,7 +579,7 @@ int npc_timerevent_stop(struct npc_data* nd)
const struct TimerData *td = NULL;
int *tid;
- nullpo_retr(0, nd);
+ nullpo_ret(nd);
if( nd->u.scr.rid && !(sd = map_id2sd(nd->u.scr.rid)) )
{
@@ -676,7 +676,7 @@ void npc_timerevent_quit(struct map_session_data* sd)
int npc_gettimerevent_tick(struct npc_data* nd)
{
int tick;
- nullpo_retr(0, nd);
+ nullpo_ret(nd);
// TODO: Get player attached timer's tick. Now we can just get it by using 'getnpctimer' inside OnTimer event.
@@ -696,7 +696,7 @@ int npc_settimerevent_tick(struct npc_data* nd, int newtimer)
int old_rid;
//struct map_session_data *sd = NULL;
- nullpo_retr(0, nd);
+ nullpo_ret(nd);
// TODO: Set player attached timer's tick.
@@ -748,7 +748,7 @@ int npc_event(struct map_session_data* sd, const char* eventname, int ontouch)
struct event_data* ev = (struct event_data*)strdb_get(ev_db, eventname);
struct npc_data *nd;
- nullpo_retr(0,sd);
+ nullpo_ret(sd);
if( ev == NULL || (nd = ev->nd) == NULL )
{
@@ -777,8 +777,8 @@ int npc_touch_areanpc_sub(struct block_list *bl, va_list ap)
int pc_id,npc_id;
char *name;
- nullpo_retr(0,bl);
- nullpo_retr(0,(sd = map_id2sd(bl->id)));
+ nullpo_ret(bl);
+ nullpo_ret((sd = map_id2sd(bl->id)));
pc_id = va_arg(ap,int);
npc_id = va_arg(ap,int);
@@ -1937,9 +1937,9 @@ int npc_convertlabel_db(DBKey key, void* data, va_list ap)
const char *p;
int len;
- nullpo_retr(0, label_list = va_arg(ap,struct npc_label_list**));
- nullpo_retr(0, label_list_num = va_arg(ap,int*));
- nullpo_retr(0, filepath = va_arg(ap,const char*));
+ nullpo_ret(label_list = va_arg(ap,struct npc_label_list**));
+ nullpo_ret(label_list_num = va_arg(ap,int*));
+ nullpo_ret(filepath = va_arg(ap,const char*));
if( *label_list == NULL )
{