summaryrefslogtreecommitdiffstats
path: root/testpar/t_pflush2.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 /testpar/t_pflush2.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 'testpar/t_pflush2.c')
-rw-r--r--testpar/t_pflush2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_pflush2.c b/testpar/t_pflush2.c
index e346714..4f0ffe9 100644
--- a/testpar/t_pflush2.c
+++ b/testpar/t_pflush2.c
@@ -68,7 +68,7 @@ check_test_file(char *name, size_t name_length, hid_t fapl_id)
goto error;
if (H5Sget_simple_extent_dims(sid, dims, NULL) < 0)
goto error;
- HDassert(100 == dims[0] && 100 == dims[1]);
+ assert(100 == dims[0] && 100 == dims[1]);
/* Read some data */
if (H5Dread(did, H5T_NATIVE_INT, sid, sid, dxpl_id, data_g) < 0)