diff options
author | Haru <haru@dotalux.com> | 2015-10-11 16:33:41 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-10-11 16:33:41 +0200 |
commit | 3ca033652637cb529b8ca4d8a4f7fb3f37080fb2 (patch) | |
tree | 4f57af1a2c76d6edeeb1eebf9a81ca0c408e2f69 /src/map/pc.c | |
parent | 5fe850132ae05bbf9b4b166f035b672093cc7774 (diff) | |
download | hercules-3ca033652637cb529b8ca4d8a4f7fb3f37080fb2.tar.gz hercules-3ca033652637cb529b8ca4d8a4f7fb3f37080fb2.tar.bz2 hercules-3ca033652637cb529b8ca4d8a4f7fb3f37080fb2.tar.xz hercules-3ca033652637cb529b8ca4d8a4f7fb3f37080fb2.zip |
Fixed another compiler warning (follow-up to 5c22b63)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index cf5cd6b53..ffe43ab8f 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3589,7 +3589,7 @@ int pc_bonus2(struct map_session_data *sd,int type,int type2,int val) break; ARR_FIND(0, ARRAYLENGTH(sd->skillcast), i, sd->skillcast[i].id == 0 || sd->skillcast[i].id == type2); if (i == ARRAYLENGTH(sd->skillcast)) { - ShowDebug("script->run: bonus2 bVariableCastrate reached it's limit (%"PRIuS" skills per character), bonus skill %d (+%d%%) lost.\n", + ShowDebug("script->run: bonus2 bVariableCastrate reached it's limit (%d skills per character), bonus skill %d (+%d%%) lost.\n", ARRAYLENGTH(sd->skillcast), type2, val); break; } |