forked from github/server
snprintf usage
This commit is contained in:
parent
e0bd5c2c7b
commit
7c69bfa410
|
@ -342,7 +342,7 @@ void it_set_appearance(item_type *itype, const char *appearance) {
|
||||||
if (appearance) {
|
if (appearance) {
|
||||||
char plural[32];
|
char plural[32];
|
||||||
itype->_appearance[0] = strdup(appearance);
|
itype->_appearance[0] = strdup(appearance);
|
||||||
snprintf(plural, "%29s_p", appearance);
|
snprintf(plural, sizeof(plural), "%s_p", appearance);
|
||||||
itype->_appearance[1] = strdup(plural);
|
itype->_appearance[1] = strdup(plural);
|
||||||
} else {
|
} else {
|
||||||
itype->_appearance[0] = 0;
|
itype->_appearance[0] = 0;
|
||||||
|
|
Loading…
Reference in New Issue