summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-10-31 13:28:06 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-10-31 13:28:06 (GMT)
commitd03ae28886d062f7552334c204562a98bb7351e9 (patch)
tree84f3c2b1ded839d800783482b259da6ea0d34f48 /src/H5D.c
parentf921484e615c321791f729ff9c5e334656212c9a (diff)
downloadhdf5-d03ae28886d062f7552334c204562a98bb7351e9.zip
hdf5-d03ae28886d062f7552334c204562a98bb7351e9.tar.gz
hdf5-d03ae28886d062f7552334c204562a98bb7351e9.tar.bz2
[svn-r24381] Update VOL implementation for H5Tget_create_plist to have the VOL
plugin create the ID if the datatype is committed. This makes it consistent with other get operations in the VOL that return an ID. Tested: Jam
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 02b6016..c502dfc 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -584,7 +584,8 @@ H5Dget_create_plist(hid_t dset_id)
if(NULL == (dset = (void *)H5I_object(dset_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid dataset identifier")
- if(H5VL_dataset_get(dset, vol_plugin, H5VL_DATASET_GET_DCPL, H5AC_dxpl_id, H5_EVENT_STACK_NULL, &ret_value) < 0)
+ if(H5VL_dataset_get(dset, vol_plugin, H5VL_DATASET_GET_DCPL, H5AC_dxpl_id,
+ H5_EVENT_STACK_NULL, &ret_value) < 0)
HGOTO_ERROR(H5E_INTERNAL, H5E_CANTGET, FAIL, "unable to get dataset creation properties")
done: