From: Jim Meyering Date: Wed, 29 Jun 2005 16:25:50 +0000 (+0000) Subject: (main, store_char): Use X2REALLOC rather than x2realloc. X-Git-Tag: CPPI-1_12~456 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9bdffe1137ee26fd50733c2818861b385720318a;p=thirdparty%2Fcoreutils.git (main, store_char): Use X2REALLOC rather than x2realloc. --- diff --git a/src/pr.c b/src/pr.c index 74658c07b3..8dc35f1976 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;