diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdtime/strftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdtime/strftime.c b/lib/libc/stdtime/strftime.c index 40e0155..cd506c1 100644 --- a/lib/libc/stdtime/strftime.c +++ b/lib/libc/stdtime/strftime.c @@ -443,7 +443,7 @@ _conv(n, format, pt, ptlim) { char buf[INT_STRLEN_MAXIMUM(int) + 1]; - (void) sprintf(buf, format, n); + (void) snprintf(buf, sizeof(buf), format, n); return _add(buf, pt, ptlim); } |