1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-18 09:46:33 +02:00

(init_header): Use INT_BUFSIZE_BOUND in place of INT_STRLEN_BOUND + 1.

This commit is contained in:
Jim Meyering
2005-03-10 07:58:34 +00:00
parent 4d645f3053
commit 075a99ffcf

View File

@@ -1658,7 +1658,7 @@ static void
init_header (char *filename, int desc)
{
char *buf;
char initbuf[MAX (256, INT_STRLEN_BOUND (long int) + 1)];
char initbuf[MAX (256, INT_BUFSIZE_BOUND (long int))];
struct stat st;
struct tm *tm;