summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-07-14 03:41:02 +0200
committerHaru <haru@dotalux.com>2016-07-14 03:41:02 +0200
commitf4aee10c1ae44e220e9e84ae47180758a4a77f4d (patch)
treec77569b11b8bb6321decac0331213a943fe4323a /src/map/atcommand.c
parent7bcb379c83327331bda05a23000dc0a6bbbefa48 (diff)
downloadhercules-f4aee10c1ae44e220e9e84ae47180758a4a77f4d.tar.gz
hercules-f4aee10c1ae44e220e9e84ae47180758a4a77f4d.tar.bz2
hercules-f4aee10c1ae44e220e9e84ae47180758a4a77f4d.tar.xz
hercules-f4aee10c1ae44e220e9e84ae47180758a4a77f4d.zip
Changed map_session_data::change_level_2nd and map_session_data::change_level_3rd to int
Fixes several -Wsign-compare issues Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index a0ecef9af..969f564ba 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9295,8 +9295,9 @@ ACMD(costume){
}
/* for debugging purposes (so users can easily provide us with debug info) */
/* should be trashed as soon as its no longer necessary */
-ACMD(skdebug) {
- safesnprintf(atcmd_output, sizeof(atcmd_output),"second: %u; third: %u", sd->sktree.second, sd->sktree.third);
+ACMD(skdebug)
+{
+ safesnprintf(atcmd_output, sizeof(atcmd_output),"second: %d; third: %d", sd->sktree.second, sd->sktree.third);
clif->message(fd,atcmd_output);
safesnprintf(atcmd_output, sizeof(atcmd_output),"pc_calc_skilltree_normalize_job: %d",pc->calc_skilltree_normalize_job(sd));
clif->message(fd,atcmd_output);