summaryrefslogtreecommitdiff
path: root/src/pr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-08-12 07:29:51 +0000
committerJim Meyering <jim@meyering.net>2005-08-12 07:29:51 +0000
commita370bc0aff97bb46ffbb3ce6ba4ac388285ec035 (patch)
tree53e77cb57dcf1c410945e6383c16ebee14fd9ebc /src/pr.c
parent8c418c480ccf68b3cace65d9a460c0b4fd0dac13 (diff)
downloadcoreutils-a370bc0aff97bb46ffbb3ce6ba4ac388285ec035.tar.xz
(main): Cosmetic: use X2REALLOC rather than x2realloc.
Diffstat (limited to 'src/pr.c')
-rw-r--r--src/pr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pr.c b/src/pr.c
index 9a9e54248..67ac6fe1a 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;
}