summaryrefslogtreecommitdiffstats
path: root/src/H5Fsfile.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/H5Fsfile.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/H5Fsfile.c')
-rw-r--r--src/H5Fsfile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Fsfile.c b/src/H5Fsfile.c
index 978d4dc..afebeeb 100644
--- a/src/H5Fsfile.c
+++ b/src/H5Fsfile.c
@@ -56,7 +56,7 @@ H5F_sfile_assert_num(unsigned n)
if (n == 0) {
/* Sanity checking */
- HDassert(H5F_sfile_head_g == NULL);
+ assert(H5F_sfile_head_g == NULL);
} /* end if */
else {
unsigned count; /* Number of open shared files */
@@ -74,7 +74,7 @@ H5F_sfile_assert_num(unsigned n)
} /* end while */
/* Sanity checking */
- HDassert(count == n);
+ assert(count == n);
} /* end else */
FUNC_LEAVE_NOAPI_VOID
@@ -101,7 +101,7 @@ H5F__sfile_add(H5F_shared_t *shared)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(shared);
+ assert(shared);
/* Allocate new shared file node */
if (NULL == (new_shared = H5FL_CALLOC(H5F_sfile_node_t)))
@@ -140,7 +140,7 @@ H5F__sfile_search(H5FD_t *lf)
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(lf);
+ assert(lf);
/* Iterate through low-level files for matching low-level file info */
curr = H5F_sfile_head_g;
@@ -179,7 +179,7 @@ H5F__sfile_remove(H5F_shared_t *shared)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(shared);
+ assert(shared);
/* Locate shared file node with correct shared file */
last = NULL;