summaryrefslogtreecommitdiffstats
path: root/src/H5FDfphdf5.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDfphdf5.c')
-rw-r--r--src/H5FDfphdf5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDfphdf5.c b/src/H5FDfphdf5.c
index 3cbe426..b93c4d4 100644
--- a/src/H5FDfphdf5.c
+++ b/src/H5FDfphdf5.c
@@ -1754,7 +1754,7 @@ H5FD_fphdf5_MPIOff_to_haddr(MPI_Offset mpi_off)
{
haddr_t ret_value;
- FUNC_ENTER_NOINIT(H5FD_fphdf5_MPIOff_to_haddr);
+ FUNC_ENTER_NOAPI_NOINIT(H5FD_fphdf5_MPIOff_to_haddr);
ret_value = (mpi_off != (MPI_Offset)(haddr_t)mpi_off ? HADDR_UNDEF : (haddr_t)mpi_off);
FUNC_LEAVE_NOAPI(ret_value);
}
@@ -1776,7 +1776,7 @@ H5FD_fphdf5_haddr_to_MPIOff(haddr_t addr, MPI_Offset *mpi_off)
{
herr_t ret_value = FAIL;
- FUNC_ENTER_NOINIT(H5FD_fphdf5_haddr_to_MPIOff);
+ FUNC_ENTER_NOAPI_NOINIT(H5FD_fphdf5_haddr_to_MPIOff);
if (mpi_off)
*mpi_off = (MPI_Offset)addr;