diff options
Diffstat (limited to 'src/char/int_pet.c')
-rw-r--r-- | src/char/int_pet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/int_pet.c b/src/char/int_pet.c index 0be33e9c4..41d61fbc3 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=snprintf(str,sizeof str,"%d,%d,%s\t%d,%d,%d,%d,%d,%d,%d,%d,%d", + len=sprintf(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); |