diff options
Diffstat (limited to 'test/tunicode.c')
-rw-r--r-- | test/tunicode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tunicode.c b/test/tunicode.c index 7bc4c68..114c79c 100644 --- a/test/tunicode.c +++ b/test/tunicode.c @@ -779,15 +779,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. |