Back out snprintf -> sprintf change until I have time to look at it.
This commit is contained in:
parent
b64f39b655
commit
d7422f2f19
@ -446,7 +446,7 @@ _conv(n, format, pt, ptlim)
|
||||
{
|
||||
char buf[INT_STRLEN_MAXIMUM(int) + 1];
|
||||
|
||||
(void) snprintf(buf, sizeof(buf), format, n);
|
||||
(void) sprintf(buf, format, n);
|
||||
return _add(buf, pt, ptlim);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user