diff options
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 3d40da95a..87ad099ac 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3114,7 +3114,7 @@ static int pc_walk(int tid,unsigned int tick,int id,int data) int moveblock; int x,y,dx,dy; - nullpo_retr(0, (sd=map_id2sd(id))); + nullpo_retr_f(0, (sd=map_id2sd(id)), "id=%d", id); if(sd->walktimer != tid){ if(battle_config.error_log) |