From dec00b59303aaccd63e1b768ad8c68a1d227a9e0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Jun 2005 16:31:31 +0000 Subject: [PATCH] (dump_strings): Use x2realloc on 1-byte base types, not x2nrealloc. --- src/od.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/od.c b/src/od.c index ec398ea63b..29e2c17e3c 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++; -- 2.47.3