summaryrefslogtreecommitdiffstats
path: root/test/vol.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/vol.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/vol.c')
-rw-r--r--test/vol.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/vol.c b/test/vol.c
index 1690614..551abd1 100644
--- a/test/vol.c
+++ b/test/vol.c
@@ -579,7 +579,7 @@ fake_vol_info_to_str(const void *info, char **str)
/* Verify the info is correct before continuing */
if (val != INT_MAX) {
- HDprintf("The value of info (%d) is incorrect\n", val);
+ printf("The value of info (%d) is incorrect\n", val);
return FAIL;
}
@@ -2345,7 +2345,7 @@ test_get_vol_name(void)
/* Skip the connectors other than the native and pass_through connector */
if (HDstrcmp(conn_env_str, "native") && HDstrcmp(conn_env_str, "pass_through")) {
SKIPPED();
- HDprintf(" only test the native or internal pass_through connector\n");
+ printf(" only test the native or internal pass_through connector\n");
return SUCCEED;
}
@@ -2655,7 +2655,7 @@ main(void)
nerrors += test_query_optional() < 0 ? 1 : 0;
if (nerrors) {
- HDprintf("***** %d Virtual Object Layer TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : "");
+ printf("***** %d Virtual Object Layer TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : "");
HDexit(EXIT_FAILURE);
}