summaryrefslogtreecommitdiffstats
path: root/src/H5MFsection.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-02 04:25:33 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-02 04:25:33 (GMT)
commit65bf098ee6656f67e78cf1a7aa6ec3f81f867e1f (patch)
tree17c6617c25869731c3616473512de48d9fdc2fe6 /src/H5MFsection.c
parent3d90a076fb7a2faecd6f1bba2d6da42db565d0a7 (diff)
downloadhdf5-65bf098ee6656f67e78cf1a7aa6ec3f81f867e1f.zip
hdf5-65bf098ee6656f67e78cf1a7aa6ec3f81f867e1f.tar.gz
hdf5-65bf098ee6656f67e78cf1a7aa6ec3f81f867e1f.tar.bz2
Adds HD prefix to POSIX calls in src
Diffstat (limited to 'src/H5MFsection.c')
-rw-r--r--src/H5MFsection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5MFsection.c b/src/H5MFsection.c
index 1b9e756..6d23748 100644
--- a/src/H5MFsection.c
+++ b/src/H5MFsection.c
@@ -829,10 +829,10 @@ H5MF__sect_large_can_merge(const H5FS_section_info_t *_sect1,
HDassert(sect2);
HDassert(sect1->sect_info.type == sect2->sect_info.type); /* Checks "MERGE_SYM" flag */
if (!H5F_addr_lt(sect1->sect_info.addr, sect2->sect_info.addr)) {
- fprintf(stderr, "%s.%d: sect1->sect_info.addr %" PRIuHADDR
+ HDfprintf(stderr, "%s.%d: sect1->sect_info.addr %" PRIuHADDR
", sect2->sect_info.addr %" PRIuHADDR "\n", __func__, __LINE__,
sect1->sect_info.addr, sect2->sect_info.addr);
- fprintf(stderr, "%s.%d: sect1->sect_info.size %" PRIuHSIZE
+ HDfprintf(stderr, "%s.%d: sect1->sect_info.size %" PRIuHSIZE
", sect2->sect_info.size %" PRIuHSIZE "\n", __func__, __LINE__,
sect1->sect_info.size, sect2->sect_info.size);
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTRELEASE, FAIL, "can't merge")