1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-11 06:34:40 +02:00

(main): Use X2REALLOC rather than x2realloc.

This commit is contained in:
Jim Meyering
2005-06-29 16:27:37 +00:00
parent e68eeff682
commit fdbdfd5b62

View File

@@ -416,7 +416,7 @@ main (int argc, char **argv)
if (mode_alloc <= new_mode_len)
{
mode_alloc = new_mode_len + 1;
mode = x2realloc (mode, &mode_alloc);
mode = X2REALLOC (mode, &mode_alloc);
}
mode[mode_len] = ',';
strcpy (mode + mode_comma_len, arg);