summaryrefslogtreecommitdiffstats
path: root/tools/test/h5repack/h5repackgentest.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 /tools/test/h5repack/h5repackgentest.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 'tools/test/h5repack/h5repackgentest.c')
-rw-r--r--tools/test/h5repack/h5repackgentest.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/test/h5repack/h5repackgentest.c b/tools/test/h5repack/h5repackgentest.c
index bc22e8d..8910abb 100644
--- a/tools/test/h5repack/h5repackgentest.c
+++ b/tools/test/h5repack/h5repackgentest.c
@@ -329,19 +329,19 @@ main(void)
for (i = 0; i < 2; i++) {
hbool_t external = (i & 1) ? TRUE : FALSE;
if (generate_int32le_1d(external) < 0)
- HDprintf("A generate_int32le_1d failed!\n");
+ printf("A generate_int32le_1d failed!\n");
if (generate_int32le_2d(external) < 0)
- HDprintf("A generate_int32le_2d failed!\n");
+ printf("A generate_int32le_2d failed!\n");
if (generate_int32le_3d(external) < 0)
- HDprintf("A generate_int32le_3d failed!\n");
+ printf("A generate_int32le_3d failed!\n");
if (generate_uint8be(external) < 0)
- HDprintf("A generate_uint8be failed!\n");
+ printf("A generate_uint8be failed!\n");
if (generate_f32le(external) < 0)
- HDprintf("A generate_f32le failed!\n");
+ printf("A generate_f32le failed!\n");
} /* end for external data storage or not */