Skip to content

Commit

Permalink
ROS3: (fix) Replaced HDfprintf (#3266)
Browse files Browse the repository at this point in the history
- Replaced the HDfprintf() functions by fprintf() to be consistent
  with other parts of the library.
  • Loading branch information
Jan-Willem Blokland authored Jul 24, 2023
1 parent 1706355 commit adb3a17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/H5FDros3.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit adb3a17

Please sign in to comment.