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 | 00c95f652e5a2c572b9f210507e346af031c6f96 (patch) | |
tree | aeaef59669cf66ac232982b6c0b62d7b6436d077 /src/map/unit.c | |
parent | 3364658237805c34ebc074d52d34f540c8a8ee56 (diff) | |
download | hercules-00c95f652e5a2c572b9f210507e346af031c6f96.tar.gz hercules-00c95f652e5a2c572b9f210507e346af031c6f96.tar.bz2 hercules-00c95f652e5a2c572b9f210507e346af031c6f96.tar.xz hercules-00c95f652e5a2c572b9f210507e346af031c6f96.zip |
Change all TBL_MER to struct mercenary_data as per style guidelines
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index fefa494fc..5d6c3b77a 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -2800,7 +2800,7 @@ int unit_free(struct block_list *bl, clr_type clrtype) { } case BL_MER: { - struct mercenary_data *md = (TBL_MER*)bl; + struct mercenary_data *md = (struct mercenary_data *)bl; struct map_session_data *sd = md->master; if( mercenary->get_lifetime(md) > 0 ) mercenary->save(md); |