diff options
Diffstat (limited to 'src/char/inter.c')
-rw-r--r-- | src/char/inter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/char/inter.c b/src/char/inter.c index 1c6dceb5c..8d9cac99f 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -78,9 +78,9 @@ int inter_accreg_tostr(char *str, struct accreg *reg) { int j; char *p = str; - p += snprintf(p, sizeof p, "%d\t", reg->account_id); + p += sprintf(p, "%d\t", reg->account_id); for(j = 0; j < reg->reg_num; j++) { - p += snprintf(p, sizeof p, "%s,%s ", reg->reg[j].str, reg->reg[j].value); + p += sprintf(p,"%s,%s ", reg->reg[j].str, reg->reg[j].value); } return 0; |