From 9bdffe1137ee26fd50733c2818861b385720318a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 29 Jun 2005 16:25:50 +0000 Subject: (main, store_char): Use X2REALLOC rather than x2realloc. --- src/pr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pr.c') diff --git a/src/pr.c b/src/pr.c index 74658c07b..8dc35f197 100644 --- a/src/pr.c +++ b/src/pr.c @@ -890,7 +890,7 @@ main (int argc, char **argv) /* Accumulate column-count digits specified via old-style options. */ if (n_digits + 1 >= n_alloc) column_count_string - = x2realloc (column_count_string, &n_alloc); + = X2REALLOC (column_count_string, &n_alloc); column_count_string[n_digits++] = c; column_count_string[n_digits] = 0; continue; -- cgit v1.2.3-54-g00ecf