From a370bc0aff97bb46ffbb3ce6ba4ac388285ec035 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 12 Aug 2005 07:29:51 +0000 Subject: [PATCH] (main): Cosmetic: use X2REALLOC rather than x2realloc. --- src/pr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3