summaryrefslogtreecommitdiffstats
path: root/src/H5checksum.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /src/H5checksum.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'src/H5checksum.c')
-rw-r--r--src/H5checksum.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5checksum.c b/src/H5checksum.c
index cd3fb4c..8692579 100644
--- a/src/H5checksum.c
+++ b/src/H5checksum.c
@@ -106,8 +106,8 @@ H5_checksum_fletcher32(const void *_data, size_t _len)
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(_data);
- HDassert(_len > 0);
+ assert(_data);
+ assert(_len > 0);
/* Compute checksum for pairs of bytes */
/* (the magic "360" value is the largest number of sums that can be
@@ -231,8 +231,8 @@ H5_checksum_crc(const void *_data, size_t len)
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(_data);
- HDassert(len > 0);
+ assert(_data);
+ assert(len > 0);
FUNC_LEAVE_NOAPI(H5__checksum_crc_update((uint32_t)0xffffffffL, (const uint8_t *)_data, len) ^
0xffffffffL)
@@ -384,8 +384,8 @@ H5_checksum_lookup3(const void *key, size_t length, uint32_t initval)
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(key);
- HDassert(length > 0);
+ assert(key);
+ assert(length > 0);
/* Set up the internal state */
a = b = c = 0xdeadbeef + ((uint32_t)length) + initval;
@@ -462,7 +462,7 @@ H5_checksum_lookup3(const void *key, size_t length, uint32_t initval)
case 0:
goto done;
default:
- HDassert(0 && "This Should never be executed!");
+ assert(0 && "This Should never be executed!");
}
H5_lookup3_final(a, b, c);
@@ -491,8 +491,8 @@ H5_checksum_metadata(const void *data, size_t len, uint32_t initval)
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(data);
- HDassert(len > 0);
+ assert(data);
+ assert(len > 0);
/* Choose the appropriate checksum routine */
/* (use Bob Jenkin's "lookup3" algorithm for all buffer sizes) */
@@ -523,7 +523,7 @@ H5_hash_string(const char *str)
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(str);
+ assert(str);
while ((c = *str++))
hash = ((hash << 5) + hash) + (uint32_t)c; /* hash * 33 + c */