]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(main, store_char): Use x2realloc on 1-byte base types, not x2nrealloc.
authorJim Meyering <jim@meyering.net>
Tue, 28 Jun 2005 16:22:36 +0000 (16:22 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 28 Jun 2005 16:22:36 +0000 (16:22 +0000)
src/pr.c

index 31c8cca927ac83fde51f7754c5e14e131f9c56b9..74658c07b3bfdcaee302b01d684b6f35e3e0addc 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
@@ -890,8 +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
-             = x2nrealloc (column_count_string, &n_alloc,
-                           sizeof *column_count_string);
+             = x2realloc (column_count_string, &n_alloc);
          column_count_string[n_digits++] = c;
          column_count_string[n_digits] = 0;
          continue;
@@ -2030,7 +2029,7 @@ store_char (char c)
   if (buff_current >= buff_allocated)
     {
       /* May be too generous. */
-      buff = x2nrealloc (buff, &buff_allocated, sizeof *buff);
+      buff = x2realloc (buff, &buff_allocated);
     }
   buff[buff_current++] = c;
 }