diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-12 16:26:53 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-12 16:26:53 +0000 |
commit | c2da0a3c7938b6461c3293b31d0e2f0db723f8d3 (patch) | |
tree | b5f02fcb696fd2be0c21529238cc14161d814387 /src/map/skill.c | |
parent | 2eb9dcd521e8c726f8731e3bdfcc2e0f2e675225 (diff) | |
download | hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.tar.gz hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.tar.bz2 hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.tar.xz hercules-c2da0a3c7938b6461c3293b31d0e2f0db723f8d3.zip |
Fixed all warnings left from when compiling with -pedantic, confirmed with gcc, llvm and clang.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16415 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 98bb181a3..c2c4f23de 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -268,7 +268,7 @@ int skill_get_casttype (int id) if (skill_get_nk(id)&NK_NO_DAMAGE) return CAST_NODAMAGE; return CAST_DAMAGE; -}; +} //Returns actual skill range taking into account attack range and AC_OWL [Skotlex] int skill_get_range2 (struct block_list *bl, int id, int lv) |