diff options
author | hemagx <hemagx2@gmail.com> | 2015-12-26 11:17:14 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-06 15:09:54 +0100 |
commit | 3364658237805c34ebc074d52d34f540c8a8ee56 (patch) | |
tree | 1bae2bca09c3f8b08d5a41be55efbe3cb2fa3d1a /src/map/clif.c | |
parent | 1249dc22081a0be982489aae8f18e1658e0cba95 (diff) | |
download | hercules-3364658237805c34ebc074d52d34f540c8a8ee56.tar.gz hercules-3364658237805c34ebc074d52d34f540c8a8ee56.tar.bz2 hercules-3364658237805c34ebc074d52d34f540c8a8ee56.tar.xz hercules-3364658237805c34ebc074d52d34f540c8a8ee56.zip |
Change all TBL_HOM to struct homun_data as per style guidelines
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index fa4d2f0bf..5e078b5c9 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7016,7 +7016,7 @@ void clif_devotion(struct block_list *src, struct map_session_data *tsd) void clif_spiritball(struct block_list *bl) { unsigned char buf[16]; struct map_session_data *sd = BL_CAST(BL_PC,bl); - TBL_HOM *hd = BL_CAST(BL_HOM,bl); + struct homun_data *hd = BL_CAST(BL_HOM,bl); nullpo_retv(bl); @@ -8409,7 +8409,7 @@ void clif_charnameack (int fd, struct block_list *bl) break; //[blackhole89] case BL_HOM: - memcpy(WBUFP(buf,6), ((TBL_HOM*)bl)->homunculus.name, NAME_LENGTH); + memcpy(WBUFP(buf,6), ((struct homun_data *)bl)->homunculus.name, NAME_LENGTH); break; case BL_MER: memcpy(WBUFP(buf,6), ((TBL_MER*)bl)->db->name, NAME_LENGTH); |