summaryrefslogtreecommitdiff
path: root/src/char/int_pet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/char/int_pet.c')
-rw-r--r--src/char/int_pet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/int_pet.c b/src/char/int_pet.c
index 41d61fbc3..0be33e9c4 100644
--- a/src/char/int_pet.c
+++ b/src/char/int_pet.c
@@ -34,7 +34,7 @@ int inter_pet_tostr(char *str,struct s_pet *p)
else if(p->intimate > 1000)
p->intimate = 1000;
- len=sprintf(str,"%d,%d,%s\t%d,%d,%d,%d,%d,%d,%d,%d,%d",
+ len=snprintf(str,sizeof str,"%d,%d,%s\t%d,%d,%d,%d,%d,%d,%d,%d,%d",
p->pet_id,p->class_,p->name,p->account_id,p->char_id,p->level,p->egg_id,
p->equip,p->intimate,p->hungry,p->rename_flag,p->incuvate);