diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-20 16:56:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-20 16:56:01 +0300 |
commit | 32260349036f3af44873d13d12bedb3883bb17bf (patch) | |
tree | 1000c9b57d48b9b9943cee6a2860c7a300c264ac /src/map/clif.c | |
parent | 8cc96fc6a97376a020b31fbb16196e3476f79ec5 (diff) | |
download | evol-hercules-32260349036f3af44873d13d12bedb3883bb17bf.tar.gz evol-hercules-32260349036f3af44873d13d12bedb3883bb17bf.tar.bz2 evol-hercules-32260349036f3af44873d13d12bedb3883bb17bf.tar.xz evol-hercules-32260349036f3af44873d13d12bedb3883bb17bf.zip |
fix compilation warnings.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index d0634bd..e0e2cf6 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -152,7 +152,7 @@ void eclif_authok_post(struct map_session_data *sd) return; eclif_send_additional_slots(sd, sd); - send_pc_info(sd, sd, SELF); + send_pc_info(&sd->bl, &sd->bl, SELF); struct MapdExt *data = mapd_get(sd->bl.m); int mask = data ? data->mask : 1; send_mapmask(sd->fd, mask); |