1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-10 14:13:31 +02:00

(main): Cosmetic: use X2REALLOC rather than x2realloc.

This commit is contained in:
Jim Meyering
2005-08-12 07:29:51 +00:00
parent 8c418c480c
commit a370bc0aff

View File

@@ -2029,7 +2029,7 @@ store_char (char c)
if (buff_current >= buff_allocated)
{
/* May be too generous. */
buff = x2realloc (buff, &buff_allocated);
buff = X2REALLOC (buff, &buff_allocated);
}
buff[buff_current++] = c;
}