diff options
-rw-r--r-- | src/sort.c | 2 |
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); } } |