From: Jim Meyering Date: Thu, 10 Mar 2005 07:58:34 +0000 (+0000) Subject: (init_header): Use INT_BUFSIZE_BOUND in place of INT_STRLEN_BOUND + 1. X-Git-Tag: CPPI-1_12~1334 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=075a99ffcf507853bf5e30dd1a1da5599554d55b;p=thirdparty%2Fcoreutils.git (init_header): Use INT_BUFSIZE_BOUND in place of INT_STRLEN_BOUND + 1. --- diff --git a/src/pr.c b/src/pr.c index 44fa6788c7..dc71155331 100644 --- a/src/pr.c +++ b/src/pr.c @@ -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;