summaryrefslogtreecommitdiffstats
path: root/src/H5FAstat.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /src/H5FAstat.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'src/H5FAstat.c')
-rw-r--r--src/H5FAstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FAstat.c b/src/H5FAstat.c
index 8238c19..a052b79 100644
--- a/src/H5FAstat.c
+++ b/src/H5FAstat.c
@@ -87,8 +87,8 @@ H5FA_get_stats(const H5FA_t *fa, H5FA_stat_t *stats)
#endif /* H5FA_DEBUG */
/* Check arguments */
- HDassert(fa);
- HDassert(stats);
+ assert(fa);
+ assert(stats);
/* Copy fixed array statistics */
H5MM_memcpy(stats, &fa->hdr->stats, sizeof(fa->hdr->stats));