From: Jim Meyering Date: Fri, 12 Aug 2005 07:29:51 +0000 (+0000) Subject: (main): Cosmetic: use X2REALLOC rather than x2realloc. X-Git-Tag: CPPI-1_12~201 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a370bc0aff97bb46ffbb3ce6ba4ac388285ec035;p=thirdparty%2Fcoreutils.git (main): Cosmetic: use X2REALLOC rather than x2realloc. --- diff --git a/src/pr.c b/src/pr.c index 9a9e542487..67ac6fe1ac 100644 --- a/src/pr.c +++ b/src/pr.c @@ -2029,7 +2029,7 @@ store_char (char c) if (buff_current >= buff_allocated) { /* May be too generous. */ - buff = x2realloc (buff, &buff_allocated); + buff = X2REALLOC (buff, &buff_allocated); } buff[buff_current++] = c; }