summaryrefslogtreecommitdiffstats
path: root/test/file_image.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/file_image.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/file_image.c')
-rw-r--r--test/file_image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/file_image.c b/test/file_image.c
index 60cd186..a43f176 100644
--- a/test/file_image.c
+++ b/test/file_image.c
@@ -1349,7 +1349,7 @@ main(void)
h5_reset();
- HDprintf("Testing File Image Functionality.\n");
+ printf("Testing File Image Functionality.\n");
errors += test_properties();
errors += test_callbacks();
@@ -1412,10 +1412,10 @@ main(void)
h5_restore_err();
if (errors) {
- HDprintf("***** %d File Image TEST%s FAILED! *****\n", errors, errors > 1 ? "S" : "");
+ printf("***** %d File Image TEST%s FAILED! *****\n", errors, errors > 1 ? "S" : "");
return 1;
}
- HDprintf("All File Image tests passed.\n");
+ printf("All File Image tests passed.\n");
return 0;
}