summaryrefslogtreecommitdiffstats
path: root/test/vds_swmr_writer.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/vds_swmr_writer.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/vds_swmr_writer.c')
-rw-r--r--test/vds_swmr_writer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/vds_swmr_writer.c b/test/vds_swmr_writer.c
index 33f2a86..2617497 100644
--- a/test/vds_swmr_writer.c
+++ b/test/vds_swmr_writer.c
@@ -43,7 +43,7 @@ main(int argc, char *argv[])
* This is an integer index into the FILE_NAMES array.
*/
if (argc != 2) {
- HDfprintf(stderr, "ERROR: Must pass the source file number on the command line.\n");
+ fprintf(stderr, "ERROR: Must pass the source file number on the command line.\n");
return EXIT_FAILURE;
}
@@ -134,7 +134,7 @@ main(int argc, char *argv[])
TEST_ERROR;
HDfree(buffer);
- HDfprintf(stderr, "SWMR writer exited successfully\n");
+ fprintf(stderr, "SWMR writer exited successfully\n");
return EXIT_SUCCESS;
error:
@@ -156,7 +156,7 @@ error:
}
H5E_END_TRY
- HDfprintf(stderr, "ERROR: SWMR writer exited with errors\n");
+ fprintf(stderr, "ERROR: SWMR writer exited with errors\n");
return EXIT_FAILURE;
} /* end main */