From adb3a173f1586a167954fae4316ac2385bbda10d Mon Sep 17 00:00:00 2001 From: Jan-Willem Blokland Date: Mon, 24 Jul 2023 18:21:23 +0200 Subject: ROS3: (fix) Replaced HDfprintf (#3266) - Replaced the HDfprintf() functions by fprintf() to be consistent with other parts of the library. --- src/H5FDros3.c | 6 +++--- 1 file 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) -- cgit v0.12