summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-06-29 16:23:31 +0000
committerJim Meyering <jim@meyering.net>2005-06-29 16:23:31 +0000
commitbea7e93fde2ec3868c264eb202ec9c6463c15782 (patch)
treeaf039b536bd5d5038314fc2e95935e5d2aa4f366 /src/od.c
parent87f543aea5b9c0a70c687adfa84a43595ef14a77 (diff)
downloadcoreutils-bea7e93fde2ec3868c264eb202ec9c6463c15782.tar.xz
Update sole use of VERIFY.
Use X2REALLOC, rather than x2realloc.
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/od.c b/src/od.c
index 29e2c17e3..09c4c15ad 100644
--- a/src/od.c
+++ b/src/od.c
@@ -162,8 +162,7 @@ static const int width_bytes[] =
/* Ensure that for each member of `enum size_spec' there is an
initializer in the width_bytes array. */
-VERIFY (assert_width_bytes_matches_size_spec_decl,
- sizeof width_bytes / sizeof width_bytes[0] == N_SIZE_SPECS);
+VERIFY (sizeof width_bytes / sizeof width_bytes[0] == N_SIZE_SPECS);
/* Names for some non-printing characters. */
static const char *const charname[33] =
@@ -1470,7 +1469,7 @@ dump_strings (void)
{
if (i == bufsize)
{
- buf = x2realloc (buf, &bufsize);
+ buf = X2REALLOC (buf, &bufsize);
}
ok &= read_char (&c);
address++;