summaryrefslogtreecommitdiffstats
path: root/src/H5Odeprec.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/H5Odeprec.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/H5Odeprec.c')
-rw-r--r--src/H5Odeprec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Odeprec.c b/src/H5Odeprec.c
index a25b1a9..aa9c47b 100644
--- a/src/H5Odeprec.c
+++ b/src/H5Odeprec.c
@@ -93,7 +93,7 @@ H5O__reset_info1(H5O_info1_t *oinfo)
FUNC_ENTER_PACKAGE_NOERR;
/* Reset the passed-in info struct */
- HDmemset(oinfo, 0, sizeof(H5O_info1_t));
+ memset(oinfo, 0, sizeof(H5O_info1_t));
oinfo->type = H5O_TYPE_UNKNOWN;
oinfo->addr = HADDR_UNDEF;
@@ -126,8 +126,8 @@ H5O__iterate1_adapter(hid_t obj_id, const char *name, const H5O_info2_t *oinfo2,
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(oinfo2);
- HDassert(op_data);
+ assert(oinfo2);
+ assert(op_data);
/* Reset the legacy info struct */
if (H5O__reset_info1(&oinfo) < 0)
@@ -225,8 +225,8 @@ H5O__get_info_old(H5VL_object_t *vol_obj, H5VL_loc_params_t *loc_params, H5O_inf
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(vol_obj);
- HDassert(loc_params);
+ assert(vol_obj);
+ assert(loc_params);
/* Reset the passed-in info struct */
if (H5O__reset_info1(oinfo) < 0)