diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-16 01:37:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-16 02:07:51 +0300 |
commit | 5e2d5385617644a4ff02074ef213c72fc33f1fe3 (patch) | |
tree | 10056ec226bed643fdba43db540ac4fa6f1aa255 /src/char | |
parent | 85f49b33cfaf24984684a7beb9e7917c48b23f13 (diff) | |
download | hercules-5e2d5385617644a4ff02074ef213c72fc33f1fe3.tar.gz hercules-5e2d5385617644a4ff02074ef213c72fc33f1fe3.tar.bz2 hercules-5e2d5385617644a4ff02074ef213c72fc33f1fe3.tar.xz hercules-5e2d5385617644a4ff02074ef213c72fc33f1fe3.zip |
Add missing quote chars in char.c
Diffstat (limited to 'src/char')
-rw-r--r-- | src/char/char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/char.c b/src/char/char.c index 51411791e..2851d3eba 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -805,7 +805,7 @@ int char_memitemdata_to_sql(const struct item items[], int max, int id, int tabl StrBuf->Printf(&buf, "UPDATE `%s` SET `amount`='%d', `equip`='%u', `identify`='%d', `refine`='%d',`attribute`='%d', `expire_time`='%u', `bound`='%d'", tablename, items[i].amount, items[i].equip, items[i].identify, items[i].refine, items[i].attribute, items[i].expire_time, items[i].bound); for (j = 0; j < MAX_SLOTS; ++j) - StrBuf->Printf(&buf, ", `card%d`=%d", j, items[i].card[j]); + StrBuf->Printf(&buf, ", `card%d`='%d'", j, items[i].card[j]); if (has_favorite) StrBuf->Printf(&buf, ", `favorite`='%d'", items[i].favorite); StrBuf->Printf(&buf, " WHERE `id`='%d' LIMIT 1", item.id); |