summaryrefslogtreecommitdiffstats
path: root/test/API/tunicode.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/API/tunicode.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/API/tunicode.c')
-rw-r--r--test/API/tunicode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/API/tunicode.c b/test/API/tunicode.c
index 04d0d8b..326de86 100644
--- a/test/API/tunicode.c
+++ b/test/API/tunicode.c
@@ -783,15 +783,15 @@ dump_string(const char *string)
size_t length;
size_t x;
- HDprintf("The string was:\n %s", string);
- HDprintf("Or in hex:\n");
+ printf("The string was:\n %s", string);
+ printf("Or in hex:\n");
length = HDstrlen(string);
for (x = 0; x < length; x++)
- HDprintf("%x ", string[x] & (0x000000FF));
+ printf("%x ", string[x] & (0x000000FF));
- HDprintf("\n");
+ printf("\n");
}
/* Main test.