Update sole use of VERIFY.
authorJim Meyering <jim@meyering.net>
Wed, 29 Jun 2005 16:23:31 +0000 (16:23 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 29 Jun 2005 16:23:31 +0000 (16:23 +0000)
Use X2REALLOC, rather than x2realloc.

src/od.c

index 29e2c17e3ce65ef5f65fb047e746e4e16637b234..09c4c15adcb28f10dd2dd72f7ee68306efc6ad12 100644 (file)
--- 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++;