From 8c418c480ccf68b3cace65d9a460c0b4fd0dac13 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 12 Aug 2005 07:29:38 +0000 Subject: (fold_file): Cosmetic: use X2REALLOC rather than x2realloc. --- src/fold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fold.c') diff --git a/src/fold.c b/src/fold.c index 9a3e53837..cc5424dee 100644 --- a/src/fold.c +++ b/src/fold.c @@ -149,7 +149,7 @@ fold_file (char *filename, size_t width) while ((c = getc (istream)) != EOF) { if (offset_out + 1 >= allocated_out) - line_out = x2nrealloc (line_out, &allocated_out, sizeof *line_out); + line_out = X2REALLOC (line_out, &allocated_out); if (c == '\n') { -- cgit v1.2.3-54-g00ecf