summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-08-12 07:16:25 +0000
committerJim Meyering <jim@meyering.net>2005-08-12 07:16:25 +0000
commit0b08c3815214197faf9baf5cd77ddac6ae6f7c1d (patch)
tree12bcef60191f67fb8184bd12adaa0bfda5c40ce1 /src/od.c
parent6f7fd1a8667c45df0207fef3399b6167dbd283f3 (diff)
downloadcoreutils-0b08c3815214197faf9baf5cd77ddac6ae6f7c1d.tar.xz
Cosmetic: use X2NREALLOC (only two arguments) rather than x2nrealloc (with three).
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/od.c b/src/od.c
index 667beb8a5..79c2435ec 100644
--- a/src/od.c
+++ b/src/od.c
@@ -974,7 +974,7 @@ decode_format_string (const char *s)
const char *next;
if (n_specs_allocated <= n_specs)
- spec = x2nrealloc (spec, &n_specs_allocated, sizeof *spec);
+ spec = X2NREALLOC (spec, &n_specs_allocated);
if (! decode_one_format (s_orig, s, &next, &spec[n_specs]))
return false;