(svn r26486) -Codechange: replace a number of snprintfs with seprintf
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
sq_getinteger(vm, index, &res);
|
||||
|
||||
char buf[10];
|
||||
snprintf(buf, sizeof(buf), "%d", (int32)res);
|
||||
seprintf(buf, lastof(buf), "%d", (int32)res);
|
||||
data = buf;
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user