summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 2d55bb46c..3b226c122 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4593,7 +4593,7 @@ int pc_follow(struct map_session_data *sd,int target_id)
int pc_checkbaselevelup(struct map_session_data *sd)
{
- int next = pc_nextbaseexp(sd);
+ unsigned int next = pc_nextbaseexp(sd);
nullpo_retr(0, sd);
@@ -4651,7 +4651,7 @@ int pc_checkbaselevelup(struct map_session_data *sd)
int pc_checkjoblevelup(struct map_session_data *sd)
{
- int next = pc_nextjobexp(sd);
+ unsigned int next = pc_nextjobexp(sd);
nullpo_retr(0, sd);
@@ -4763,7 +4763,7 @@ int pc_gainexp(struct map_session_data *sd,unsigned int base_exp,unsigned int jo
if(sd->state.showexp){
sprintf(output,
- "Experience Gained Base:%d (%.2f%%) Job:%d (%.2f%%)",base_exp,nextbp*(float)100,job_exp,nextjp*(float)100);
+ "Experience Gained Base:%u (%.2f%%) Job:%u (%.2f%%)",base_exp,nextbp*(float)100,job_exp,nextjp*(float)100);
clif_disp_onlyself(sd,output,strlen(output));
}