summaryrefslogtreecommitdiffstats
path: root/test/cache_logging.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/cache_logging.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/cache_logging.c')
-rw-r--r--test/cache_logging.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cache_logging.c b/test/cache_logging.c
index 42427c7..67cf13d 100644
--- a/test/cache_logging.c
+++ b/test/cache_logging.c
@@ -165,16 +165,16 @@ main(void)
/* Reset library */
h5_reset();
- HDprintf("Testing basic metadata cache logging functionality.\n");
+ printf("Testing basic metadata cache logging functionality.\n");
nerrors += test_logging_api();
if (nerrors) {
- HDprintf("***** %d Metadata cache logging TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : "");
+ printf("***** %d Metadata cache logging TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : "");
HDexit(EXIT_FAILURE);
}
- HDprintf("All Metadata Cache Logging tests passed.\n");
+ printf("All Metadata Cache Logging tests passed.\n");
HDexit(EXIT_SUCCESS);
}