summaryrefslogtreecommitdiffstats
path: root/src/H5ESevent.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/H5ESevent.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/H5ESevent.c')
-rw-r--r--src/H5ESevent.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5ESevent.c b/src/H5ESevent.c
index 2edb61d..052b141 100644
--- a/src/H5ESevent.c
+++ b/src/H5ESevent.c
@@ -93,8 +93,8 @@ H5ES__event_new(H5VL_t *connector, void *token)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(connector);
- HDassert(token);
+ assert(connector);
+ assert(token);
/* Create vol object for token */
if (NULL == (request = H5VL_create_object(token, connector))) {
@@ -137,7 +137,7 @@ H5ES__event_free(H5ES_event_t *ev)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(ev);
+ assert(ev);
/* The 'app_func_name', 'app_file_name', and 'api_name' strings are statically allocated (by the compiler)
* and are not allocated, so there's no need to free them.
@@ -183,7 +183,7 @@ H5ES__event_completed(H5ES_event_t *ev, H5ES_event_list_t *el)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(ev);
+ assert(ev);
/* Remove the event from the event list */
H5ES__list_remove(el, ev);