diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-12 07:29:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-12 07:29:51 +0000 |
commit | a370bc0aff97bb46ffbb3ce6ba4ac388285ec035 (patch) | |
tree | 53e77cb57dcf1c410945e6383c16ebee14fd9ebc /src | |
parent | 8c418c480ccf68b3cace65d9a460c0b4fd0dac13 (diff) | |
download | coreutils-a370bc0aff97bb46ffbb3ce6ba4ac388285ec035.tar.xz |
(main): Cosmetic: use X2REALLOC rather than x2realloc.
Diffstat (limited to 'src')
-rw-r--r-- | src/pr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |