summaryrefslogtreecommitdiffstats
path: root/src/H5dbg.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 /src/H5dbg.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 'src/H5dbg.c')
-rw-r--r--src/H5dbg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5dbg.c b/src/H5dbg.c
index ddf33ad..ed517ad 100644
--- a/src/H5dbg.c
+++ b/src/H5dbg.c
@@ -87,24 +87,24 @@ H5_buffer_dump(FILE *stream, int indent, const uint8_t *buf, const uint8_t *mark
/*
* Print the buffer in a VMS-style octal dump.
*/
- HDfprintf(stream, "%*sData follows (`__' indicates free region)...\n", indent, "");
+ fprintf(stream, "%*sData follows (`__' indicates free region)...\n", indent, "");
for (u = 0; u < buf_size; u += 16) {
uint8_t c;
- HDfprintf(stream, "%*s %8zu: ", indent, "", u + buf_offset);
+ fprintf(stream, "%*s %8zu: ", indent, "", u + buf_offset);
/* Print the hex values */
for (v = 0; v < 16; v++) {
if (u + v < buf_size) {
if (marker[u + v])
- HDfprintf(stream, "__ ");
+ fprintf(stream, "__ ");
else {
c = buf[buf_offset + u + v];
- HDfprintf(stream, "%02x ", c);
+ fprintf(stream, "%02x ", c);
} /* end else */
} /* end if */
else
- HDfprintf(stream, " ");
+ fprintf(stream, " ");
if (7 == v)
HDfputc(' ', stream);