summaryrefslogtreecommitdiffstats
path: root/test/swmr_common.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_common.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_common.c')
-rw-r--r--test/swmr_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/swmr_common.c b/test/swmr_common.c
index 0143cf8..173dea8 100644
--- a/test/swmr_common.c
+++ b/test/swmr_common.c
@@ -275,12 +275,12 @@ print_metadata_retries_info(hid_t fid)
if (NULL == info.retries[i])
continue;
- HDfprintf(stderr, "Metadata read retries for item %u:\n", i);
+ fprintf(stderr, "Metadata read retries for item %u:\n", i);
power = 1;
for (j = 0; j < info.nbins; j++) {
if (info.retries[i][j])
- HDfprintf(stderr, "\t# of retries for %u - %u retries: %u\n", power, (power * 10) - 1,
- info.retries[i][j]);
+ fprintf(stderr, "\t# of retries for %u - %u retries: %u\n", power, (power * 10) - 1,
+ info.retries[i][j]);
power *= 10;
} /* end for */
} /* end for */