summaryrefslogtreecommitdiffstats
path: root/src/H5Tdbg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Tdbg.c')
-rw-r--r--src/H5Tdbg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Tdbg.c b/src/H5Tdbg.c
index 8b63878..2f14a0f 100644
--- a/src/H5Tdbg.c
+++ b/src/H5Tdbg.c
@@ -148,8 +148,8 @@ H5T_debug(const H5T_t *dt, FILE *stream)
FUNC_ENTER_NOAPI_NOINIT
/* Check args */
- HDassert(dt);
- HDassert(stream);
+ assert(dt);
+ assert(stream);
switch (dt->shared->type) {
case H5T_NO_CLASS:
@@ -224,7 +224,7 @@ H5T_debug(const H5T_t *dt, FILE *stream)
s2 = "[named,open]";
break;
default:
- HDassert(0 && "This Should never be executed!");
+ assert(0 && "This Should never be executed!");
} /* end switch */
HDfprintf(stream, "%s%s {nbytes=%lu", s1, s2, (unsigned long)(dt->shared->size));