summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2020-12-16 23:31:10 (GMT)
committerGitHub <noreply@github.com>2020-12-16 23:31:10 (GMT)
commit487860adc2360e2453f661c4c8cd6047520226fe (patch)
tree819966d1bb45e076739224f587166fd1d5bdd188 /src
parent4a9b02f6aec206da3ef7751a8caf7a481e71306e (diff)
downloadhdf5-487860adc2360e2453f661c4c8cd6047520226fe.zip
hdf5-487860adc2360e2453f661c4c8cd6047520226fe.tar.gz
hdf5-487860adc2360e2453f661c4c8cd6047520226fe.tar.bz2
Correct func enter/leave macros in hdfs VFD (#192)
Diffstat (limited to 'src')
-rw-r--r--src/H5FDhdfs.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/H5FDhdfs.c b/src/H5FDhdfs.c
index 14347f7..a481777 100644
--- a/src/H5FDhdfs.c
+++ b/src/H5FDhdfs.c
@@ -1729,12 +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
@@ -1742,12 +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 */