]> sjero.net Git - wget/blobdiff - src/utils.c
[svn] Decrease buffer size of with_thousand_seps_sum.
[wget] / src / utils.c
index d0d7fbc9d0ba83c3518c05e445225aecd2072f50..a2942b3724c1e9f28598df4905a7ba947a0bfe12 100644 (file)
@@ -1221,7 +1221,7 @@ with_thousand_seps (wgint l)
 char *
 with_thousand_seps_sum (SUM_SIZE_INT l)
 {
-  char inbuf[64];
+  char inbuf[32];
   snprintf (inbuf, sizeof (inbuf), "%.0f", l);
   return add_thousand_seps (inbuf);
 }