summaryrefslogtreecommitdiffstats
path: root/src/H5FDros3.c
diff options
context:
space:
mode:
authorJan-Willem Blokland <Jan-Willem.Blokland@Shell.com>2023-07-24 16:21:23 (GMT)
committerGitHub <noreply@github.com>2023-07-24 16:21:23 (GMT)
commitadb3a173f1586a167954fae4316ac2385bbda10d (patch)
tree3041cc353ca9c97a5b6d8bdcce28e120a634c882 /src/H5FDros3.c
parent1706355ee10cdad20b79603b3f39935601c5fff0 (diff)
downloadhdf5-adb3a173f1586a167954fae4316ac2385bbda10d.zip
hdf5-adb3a173f1586a167954fae4316ac2385bbda10d.tar.gz
hdf5-adb3a173f1586a167954fae4316ac2385bbda10d.tar.bz2
ROS3: (fix) Replaced HDfprintf (#3266)
- Replaced the HDfprintf() functions by fprintf() to be consistent with other parts of the library.
Diffstat (limited to 'src/H5FDros3.c')
-rw-r--r--src/H5FDros3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDros3.c b/src/H5FDros3.c
index 098ac29..43cf65b 100644
--- a/src/H5FDros3.c
+++ b/src/H5FDros3.c
@@ -603,7 +603,7 @@ H5Pget_fapl_ros3_token(hid_t fapl_id, size_t size, char *token_dst /*out*/)
H5TRACE3("e", "izx", fapl_id, size, token_dst);
#if ROS3_DEBUG
- HDfprintf(stdout, "H5Pget_fapl_ros3_token() called.\n");
+ fprintf(stdout, "H5Pget_fapl_ros3_token() called.\n");
#endif
if (size == 0)
@@ -655,7 +655,7 @@ H5FD__ros3_str_token_copy(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UNUSED
FUNC_ENTER_PACKAGE
#if ROS3_DEBUG
- HDfprintf(stdout, "H5FD__ros3_str_token_copy() called.\n");
+ fprintf(stdout, "H5FD__ros3_str_token_copy() called.\n");
#endif
if (*value)
@@ -789,7 +789,7 @@ H5Pset_fapl_ros3_token(hid_t fapl_id, const char *token)
H5TRACE2("e", "i*s", fapl_id, token);
#if ROS3_DEBUG
- HDfprintf(stdout, "H5Pset_fapl_ros3_token() called.\n");
+ fprintf(stdout, "H5Pset_fapl_ros3_token() called.\n");
#endif
if (fapl_id == H5P_DEFAULT)