From dec00b59303aaccd63e1b768ad8c68a1d227a9e0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Jun 2005 16:31:31 +0000 Subject: (dump_strings): Use x2realloc on 1-byte base types, not x2nrealloc. --- src/od.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/od.c') diff --git a/src/od.c b/src/od.c index ec398ea63..29e2c17e3 100644 --- a/src/od.c +++ b/src/od.c @@ -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++; -- cgit v1.2.3-54-g00ecf