From 85e6360533df206d8336cb088a9322e2f9874aec Mon Sep 17 00:00:00 2001 From: Jan-Willem Blokland Date: Thu, 20 Jul 2023 16:59:52 +0200 Subject: [PATCH] ROS3: (fix) Replaced HDfprintf - 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 098ac29fa10..43cf65b0604 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)