summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-12-17 11:59:01 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-12-17 11:59:01 (GMT)
commit9e07834b2df17b58031cebbdb23fbab87504abeb (patch)
tree4bf21b98da0a65dc6545d97964ad0ee6daf57fc8 /src
parentf2fdf1f4e8e531e7b2782d8ea2c7792a689810c4 (diff)
parent487860adc2360e2453f661c4c8cd6047520226fe (diff)
downloadhdf5-9e07834b2df17b58031cebbdb23fbab87504abeb.zip
hdf5-9e07834b2df17b58031cebbdb23fbab87504abeb.tar.gz
hdf5-9e07834b2df17b58031cebbdb23fbab87504abeb.tar.bz2
Merge branch 'hdf5_1_8' of https://github.com/HDFGroup/hdf5 into hdf5_1_8
Diffstat (limited to 'src')
-rw-r--r--src/H5FDhdfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FDhdfs.c b/src/H5FDhdfs.c
index 31e92b8..a481777 100644
--- a/src/H5FDhdfs.c
+++ b/src/H5FDhdfs.c
@@ -1729,13 +1729,13 @@ H5Pget_fapl_hdfs(hid_t fapl_id, H5FD_hdfs_fapl_t *fa_out)
{
herr_t ret_value = FAIL;
- FUNC_ENTER_NOAPI_NOINIT
+ FUNC_ENTER_API_NOINIT
H5TRACE2("e", "i*x", fapl_id, fa_out);
HGOTO_ERROR(H5E_VFL, H5E_UNSUPPORTED, FAIL, "HDFS VFD not included in the HDF5 library")
done:
- FUNC_LEAVE_NOAPI(ret_value)
+ FUNC_LEAVE_API(ret_value)
}
herr_t
@@ -1743,13 +1743,13 @@ H5Pset_fapl_hdfs(hid_t fapl_id, H5FD_hdfs_fapl_t *fa)
{
herr_t ret_value = FAIL;
- FUNC_ENTER_NOAPI_NOINIT
+ FUNC_ENTER_API_NOINIT
H5TRACE2("e", "i*x", fapl_id, fa);
HGOTO_ERROR(H5E_VFL, H5E_UNSUPPORTED, FAIL, "HDFS VFD not included in the HDF5 library")
done:
- FUNC_LEAVE_NOAPI(ret_value)
+ FUNC_LEAVE_API(ret_value)
}
#endif /* H5_HAVE_LIBHDFS */