summaryrefslogtreecommitdiffstats
path: root/src/H5FDonion_history.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDonion_history.c')
-rw-r--r--src/H5FDonion_history.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5FDonion_history.c b/src/H5FDonion_history.c
index 567ac07..33a16ab 100644
--- a/src/H5FDonion_history.c
+++ b/src/H5FDonion_history.c
@@ -45,8 +45,8 @@ H5FD__onion_ingest_history(H5FD_onion_history_t *history_out, H5FD_t *raw_file,
FUNC_ENTER_PACKAGE
- HDassert(history_out);
- HDassert(raw_file);
+ assert(history_out);
+ assert(raw_file);
/* Set early so we can clean up properly on errors */
history_out->record_locs = NULL;
@@ -168,9 +168,9 @@ H5FD__onion_history_decode(unsigned char *buf, H5FD_onion_history_t *history)
FUNC_ENTER_PACKAGE
- HDassert(buf != NULL);
- HDassert(history != NULL);
- HDassert(H5FD_ONION_HISTORY_VERSION_CURR == history->version);
+ assert(buf != NULL);
+ assert(history != NULL);
+ assert(H5FD_ONION_HISTORY_VERSION_CURR == history->version);
if (HDstrncmp((const char *)buf, H5FD_ONION_HISTORY_SIGNATURE, 4))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, 0, "invalid signature")
@@ -270,17 +270,17 @@ H5FD__onion_history_encode(H5FD_onion_history_t *history, unsigned char *buf, ui
FUNC_ENTER_PACKAGE_NOERR
- HDassert(history != NULL);
- HDassert(H5FD_ONION_HISTORY_VERSION_CURR == history->version);
- HDassert(buf != NULL);
- HDassert(checksum != NULL);
+ assert(history != NULL);
+ assert(H5FD_ONION_HISTORY_VERSION_CURR == history->version);
+ assert(buf != NULL);
+ assert(checksum != NULL);
HDmemcpy(ptr, H5FD_ONION_HISTORY_SIGNATURE, 4);
ptr += 4;
UINT32ENCODE(ptr, vers_u32);
UINT64ENCODE(ptr, history->n_revisions);
if (history->n_revisions > 0) {
- HDassert(history->record_locs != NULL);
+ assert(history->record_locs != NULL);
for (uint64_t i = 0; i < history->n_revisions; i++) {
H5FD_onion_record_loc_t *rloc = &history->record_locs[i];