summaryrefslogtreecommitdiffstats
path: root/src/H5PLint.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/H5PLint.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/H5PLint.c')
-rw-r--r--src/H5PLint.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5PLint.c b/src/H5PLint.c
index 62e0074..e9156f2 100644
--- a/src/H5PLint.c
+++ b/src/H5PLint.c
@@ -82,7 +82,7 @@ H5PL__get_plugin_control_mask(unsigned int *mask /*out*/)
FUNC_ENTER_PACKAGE_NOERR
/* Check args - Just assert on package functions */
- HDassert(mask);
+ assert(mask);
/* Return the mask */
*mask = H5PL_plugin_control_mask_g;
@@ -329,11 +329,11 @@ H5PL__open(const char *path, H5PL_type_t type, const H5PL_key_t *key, hbool_t *s
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
+ assert(path);
if (type == H5PL_TYPE_NONE)
- HDassert(!key);
- HDassert(success);
- HDassert(plugin_info);
+ assert(!key);
+ assert(success);
+ assert(plugin_info);
/* Initialize out parameters */
*success = FALSE;