diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-12 07:29:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-12 07:29:38 +0000 |
commit | 8c418c480ccf68b3cace65d9a460c0b4fd0dac13 (patch) | |
tree | 004164b42a87d604a7085e751ea4f5a27e6aa3dd /src | |
parent | 0b08c3815214197faf9baf5cd77ddac6ae6f7c1d (diff) | |
download | coreutils-8c418c480ccf68b3cace65d9a460c0b4fd0dac13.tar.xz |
(fold_file): Cosmetic: use X2REALLOC rather than x2realloc.
Diffstat (limited to 'src')
-rw-r--r-- | src/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
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') { |