summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_blob.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 20:43:30 (GMT)
committerGitHub <noreply@github.com>2023-07-27 20:43:30 (GMT)
commit1e91d96fa02466ffe451319bdac1005f84dc7993 (patch)
tree4de04ef502c313dfd766497b20235188761146c0 /src/H5VLnative_blob.c
parent95e5349089b95dfb95f0f8ce2d6db1bc04ba6c82 (diff)
downloadhdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.zip
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.gz
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.bz2
Brings over most of the HD prefix removal (#3293)
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: {