summaryrefslogtreecommitdiffstats
path: root/src/H5Dmpio.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/H5Dmpio.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/H5Dmpio.c')
-rw-r--r--src/H5Dmpio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Dmpio.c b/src/H5Dmpio.c
index 7a8b121..ea4d9a4 100644
--- a/src/H5Dmpio.c
+++ b/src/H5Dmpio.c
@@ -432,7 +432,7 @@ static FILE *debug_stream = NULL;
#define H5D_MPIO_DEBUG(rank, string) \
do { \
if (debug_stream && H5D_MPIO_DEBUG_THIS_RANK(rank)) { \
- HDfprintf(debug_stream, "%*s(Rank %d) " string "\n", debug_indent, "", rank); \
+ fprintf(debug_stream, "%*s(Rank %d) " string "\n", debug_indent, "", rank); \
HDfflush(debug_stream); \
} \
} while (0)
@@ -441,7 +441,7 @@ static FILE *debug_stream = NULL;
#define H5D_MPIO_DEBUG_VA(rank, string, ...) \
do { \
if (debug_stream && H5D_MPIO_DEBUG_THIS_RANK(rank)) { \
- HDfprintf(debug_stream, "%*s(Rank %d) " string "\n", debug_indent, "", rank, __VA_ARGS__); \
+ fprintf(debug_stream, "%*s(Rank %d) " string "\n", debug_indent, "", rank, __VA_ARGS__); \
HDfflush(debug_stream); \
} \
} while (0)
@@ -1150,7 +1150,7 @@ H5D__piece_io(H5D_io_info_t *io_info)
/* Print a short header for this I/O operation */
time_now = HDtime(NULL);
- HDfprintf(debug_log_file, "##### %s", HDasctime(HDlocaltime(&time_now)));
+ fprintf(debug_log_file, "##### %s", HDasctime(HDlocaltime(&time_now)));
debug_stream = debug_log_file;
}
@@ -1356,7 +1356,7 @@ done:
#ifdef H5Dmpio_DEBUG
/* Close debugging log file */
if (debug_log_file) {
- HDfprintf(debug_log_file, "##############\n\n");
+ fprintf(debug_log_file, "##############\n\n");
if (EOF == HDfclose(debug_log_file))
HDONE_ERROR(H5E_IO, H5E_CLOSEERROR, FAIL, "couldn't close debugging log file")
debug_stream = H5DEBUG(D);