From: Jim Meyering Date: Wed, 29 Jun 2005 16:26:20 +0000 (+0000) Subject: (fillbuf): Use X2REALLOC rather than x2realloc. X-Git-Tag: CPPI-1_12~454 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e68eeff6823486b3afdd731672fd10357f8333dc;p=thirdparty%2Fcoreutils.git (fillbuf): Use X2REALLOC rather than x2realloc. --- diff --git a/src/sort.c b/src/sort.c index d42bfa57e4..2093bc55c6 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1059,7 +1059,7 @@ fillbuf (struct buffer *buf, FILE *fp, char const *file) /* The current input line is too long to fit in the buffer. Double the buffer size and try again. */ - buf->buf = x2realloc (buf->buf, &buf->alloc); + buf->buf = X2REALLOC (buf->buf, &buf->alloc); } }