diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-28 16:31:31 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-28 16:31:31 +0000 |
commit | dec00b59303aaccd63e1b768ad8c68a1d227a9e0 (patch) | |
tree | a481ea866b1f4b37db9536f173d7d0fed889183b /src | |
parent | b64058f69ed42fc42ed16038c40d2384d2ae81a8 (diff) | |
download | coreutils-dec00b59303aaccd63e1b768ad8c68a1d227a9e0.tar.xz |
(dump_strings): Use x2realloc on 1-byte base types, not x2nrealloc.
Diffstat (limited to 'src')
-rw-r--r-- | src/od.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1470,7 +1470,7 @@ dump_strings (void) { if (i == bufsize) { - buf = x2nrealloc (buf, &bufsize, sizeof *buf); + buf = x2realloc (buf, &bufsize); } ok &= read_char (&c); address++; |