summaryrefslogtreecommitdiffstats
path: root/test/API/tunicode.c
diff options
context:
space:
mode:
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.