diff options
author | Haruna <haru@dotalux.com> | 2015-01-12 21:02:53 +0100 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2015-01-12 21:02:53 +0100 |
commit | 74f2ce544bcc8ad814e3512b67f508fe5df40c23 (patch) | |
tree | f4c74dc5cc55711552aee5974fb3377ddb9aa433 /src/map/skill.h | |
parent | 6a5636ddf61e4fca9d258c11ebead182564f234f (diff) | |
parent | b64d0a62182800bd1c827b142c490afd94d7ef46 (diff) | |
download | hercules-74f2ce544bcc8ad814e3512b67f508fe5df40c23.tar.gz hercules-74f2ce544bcc8ad814e3512b67f508fe5df40c23.tar.bz2 hercules-74f2ce544bcc8ad814e3512b67f508fe5df40c23.tar.xz hercules-74f2ce544bcc8ad814e3512b67f508fe5df40c23.zip |
Merge pull request #440 from 4144/uninitializedfixes
Different warnings fixes
Diffstat (limited to 'src/map/skill.h')
-rw-r--r-- | src/map/skill.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.h b/src/map/skill.h index aadda32d9..31a268971 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -2055,7 +2055,7 @@ struct skill_interface { void (*attack_post_unknown) (int *attack_type, struct block_list* src, struct block_list *dsrc, struct block_list *bl, uint16 *skill_id, uint16 *skill_lv, int64 *tick, int *flag); bool (*timerskill_dead_unknown) (struct block_list *src, struct unit_data *ud, struct skill_timerskill *skl); void (*timerskill_target_unknown) (int tid, int64 tick, struct block_list *src, struct block_list *target, struct unit_data *ud, struct skill_timerskill *skl); - void (*timerskill_notarget_unknown) (int tid, int64 tick, struct block_list *src, struct block_list *target, struct unit_data *ud, struct skill_timerskill *skl); + void (*timerskill_notarget_unknown) (int tid, int64 tick, struct block_list *src, struct unit_data *ud, struct skill_timerskill *skl); bool (*cleartimerskill_exception) (int skill_id); bool (*castend_id_unknown) (struct unit_data *ud, struct block_list *src, struct block_list *target); bool (*castend_nodamage_id_dead_unknown) (struct block_list *src, struct block_list *bl, uint16 *skill_id, uint16 *skill_lv, int64 *tick, int *flag); |