summaryrefslogtreecommitdiff
path: root/src/sort.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-06-29 16:26:20 +0000
committerJim Meyering <jim@meyering.net>2005-06-29 16:26:20 +0000
commite68eeff6823486b3afdd731672fd10357f8333dc (patch)
treedf724f7ef4280ab3f14e74565ec9832c03993517 /src/sort.c
parentfd98517183ca2c17b87cc881db5d143f7498d70d (diff)
downloadcoreutils-e68eeff6823486b3afdd731672fd10357f8333dc.tar.xz
(fillbuf): Use X2REALLOC rather than x2realloc.
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c
index d42bfa57e..2093bc55c 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);
}
}