summaryrefslogtreecommitdiffstats
path: root/test/swmr.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/swmr.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/swmr.c')
-rw-r--r--test/swmr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/swmr.c b/test/swmr.c
index 43392b6..63da6b2 100644
--- a/test/swmr.c
+++ b/test/swmr.c
@@ -7743,7 +7743,7 @@ main(void)
*/
driver = HDgetenv(HDF5_DRIVER);
if (!H5FD__supports_swmr_test(driver)) {
- HDprintf("This VFD does not support SWMR I/O\n");
+ printf("This VFD does not support SWMR I/O\n");
return EXIT_SUCCESS;
}
@@ -7760,7 +7760,7 @@ main(void)
/* Check if file locking is enabled on this file system */
if (use_file_locking)
if (h5_check_if_file_locking_enabled(&file_locking_enabled) < 0) {
- HDprintf("Error when determining if file locks are enabled\n");
+ printf("Error when determining if file locks are enabled\n");
return EXIT_FAILURE;
}
@@ -7847,7 +7847,7 @@ main(void)
if (nerrors)
goto error;
- HDprintf("All tests passed.\n");
+ printf("All tests passed.\n");
h5_cleanup(FILENAME, fapl);
@@ -7855,7 +7855,7 @@ main(void)
error:
nerrors = MAX(1, nerrors);
- HDprintf("***** %d SWMR TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S");
+ printf("***** %d SWMR TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S");
return EXIT_FAILURE;
} /* end main() */