From: Jim Meyering Date: Wed, 29 Jun 2005 16:27:37 +0000 (+0000) Subject: (main): Use X2REALLOC rather than x2realloc. X-Git-Tag: CPPI-1_12~453 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdbdfd5b62feb39ba23f5361f5d55fac912b9eea;p=thirdparty%2Fcoreutils.git (main): Use X2REALLOC rather than x2realloc. --- diff --git a/src/chmod.c b/src/chmod.c index 414bb542bd..ac3d8c7b8e 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -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);