summaryrefslogtreecommitdiffstats
path: root/test/unregister.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 15:31:32 (GMT)
committerGitHub <noreply@github.com>2023-06-28 15:31:32 (GMT)
commit187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98 (patch)
treebaffa167d0796786241aef6b0ce76d4adec3b66e /test/unregister.c
parent7a44581a84778a1346a2fd5b6cca7d9db905a321 (diff)
downloadhdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.zip
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.gz
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.bz2
Rename HD(f)printf() to (f)printf() (#3194)
Diffstat (limited to 'test/unregister.c')
-rw-r--r--test/unregister.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unregister.c b/test/unregister.c
index 5338b09..3e7b3b7 100644
--- a/test/unregister.c
+++ b/test/unregister.c
@@ -155,7 +155,7 @@ test_unregister_filters(hid_t fapl_id)
H5E_END_TRY
if (ret >= 0) {
H5_FAILED();
- HDprintf(" Line %d: Should not be able to unregister filter\n", __LINE__);
+ printf(" Line %d: Should not be able to unregister filter\n", __LINE__);
goto error;
}
@@ -206,7 +206,7 @@ test_unregister_filters(hid_t fapl_id)
H5E_END_TRY
if (ret >= 0) {
H5_FAILED();
- HDprintf(" Line %d: Should not be able to unregister filter\n", __LINE__);
+ printf(" Line %d: Should not be able to unregister filter\n", __LINE__);
goto error;
}
@@ -298,7 +298,7 @@ main(void)
if (nerrors)
goto error;
- HDprintf("All filter unregistration tests passed.\n");
+ printf("All filter unregistration tests passed.\n");
/* Pop API context */
if (api_ctx_pushed && H5CX_pop(FALSE) < 0)
@@ -309,7 +309,7 @@ main(void)
error:
nerrors = MAX(1, nerrors);
- HDprintf("***** %d FILTER UNREGISTRATION TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S");
+ printf("***** %d FILTER UNREGISTRATION TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S");
if (api_ctx_pushed)
H5CX_pop(FALSE);