summaryrefslogtreecommitdiff
path: root/src/fold.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fold.c')
-rw-r--r--src/fold.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/fold.c b/src/fold.c
index 5be82db2c..e8a2f81c4 100644
--- a/src/fold.c
+++ b/src/fold.c
@@ -145,10 +145,7 @@ fold_file (char *filename, int width)
while ((c = getc (istream)) != EOF)
{
if (offset_out + 1 >= allocated_out)
- {
- allocated_out += 1024;
- line_out = xrealloc (line_out, allocated_out);
- }
+ line_out = x2nrealloc (line_out, &allocated_out, sizeof *line_out);
if (c == '\n')
{