summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_blob.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLnative_blob.c')
-rw-r--r--src/H5VLnative_blob.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5VLnative_blob.c b/src/H5VLnative_blob.c
index 606bdeb..b70f09d 100644
--- a/src/H5VLnative_blob.c
+++ b/src/H5VLnative_blob.c
@@ -70,9 +70,9 @@ H5VL__native_blob_put(void *obj, const void *buf, size_t size, void *blob_id, vo
FUNC_ENTER_PACKAGE
/* Check parameters */
- HDassert(f);
- HDassert(size == 0 || buf);
- HDassert(id);
+ assert(f);
+ assert(size == 0 || buf);
+ assert(id);
/* Write the VL information to disk (allocates space also) */
if (H5HG_insert(f, size, buf, &hobjid) < 0)
@@ -110,9 +110,9 @@ H5VL__native_blob_get(void *obj, const void *blob_id, void *buf, size_t size, vo
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(f);
- HDassert(id);
- HDassert(buf);
+ assert(f);
+ assert(id);
+ assert(buf);
/* Get the heap information */
H5F_addr_decode(f, &id, &hobjid.addr);
@@ -153,8 +153,8 @@ H5VL__native_blob_specific(void *obj, void *blob_id, H5VL_blob_specific_args_t *
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(f);
- HDassert(blob_id);
+ assert(f);
+ assert(blob_id);
switch (args->op_type) {
case H5VL_BLOB_ISNULL: {