diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-29 01:51:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-29 01:51:16 (GMT) |
commit | 8fd2e1d36e4f9df5d202499204a88cbbdd44461b (patch) | |
tree | e10a0812dce031bb52b8c53440b3237f93b698b0 /src/H5Aint.c | |
parent | ad923518098f7c4db9c51085002b9c7dd0a9adc3 (diff) | |
download | hdf5-8fd2e1d36e4f9df5d202499204a88cbbdd44461b.zip hdf5-8fd2e1d36e4f9df5d202499204a88cbbdd44461b.tar.gz hdf5-8fd2e1d36e4f9df5d202499204a88cbbdd44461b.tar.bz2 |
Convert attribute VOL callbacks to a standard form that sets up the wrapper
object info in a single place.
Diffstat (limited to 'src/H5Aint.c')
-rw-r--r-- | src/H5Aint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Aint.c b/src/H5Aint.c index 44b11a4..97da9a4 100644 --- a/src/H5Aint.c +++ b/src/H5Aint.c @@ -1163,7 +1163,7 @@ H5A__close_cb(H5VL_object_t *attr_vol_obj) HDassert(attr_vol_obj); /* Close the attribute */ - if((ret_value = H5VL_attr_close(attr_vol_obj->data, attr_vol_obj->plugin->cls, H5P_DATASET_XFER_DEFAULT, H5_REQUEST_NULL)) < 0) + if((ret_value = H5VL_attr_close(attr_vol_obj, H5P_DATASET_XFER_DEFAULT, H5_REQUEST_NULL)) < 0) HGOTO_ERROR(H5E_ATTR, H5E_CLOSEERROR, FAIL, "problem closing attribute") /* Free the VOL object */ |