summaryrefslogtreecommitdiffstats
path: root/tools/lib/io_timer.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 /tools/lib/io_timer.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 'tools/lib/io_timer.c')
-rw-r--r--tools/lib/io_timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/io_timer.c b/tools/lib/io_timer.c
index 6a8d091..d565264 100644
--- a/tools/lib/io_timer.c
+++ b/tools/lib/io_timer.c
@@ -125,7 +125,7 @@ io_time_t *
io_time_set(io_time_t *pt, timer_type t, int start_stop)
{
/* sanity check */
- HDassert(pt);
+ assert(pt);
switch (pt->type) {
#ifdef H5_HAVE_PARALLEL
@@ -214,7 +214,7 @@ H5_ATTR_PURE double
io_time_get(io_time_t *pt, timer_type t)
{
/* sanity check */
- HDassert(pt);
+ assert(pt);
return pt->total_time[t];
}