summaryrefslogtreecommitdiffstats
path: root/src/H5Ddeprec.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-20 20:40:23 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-20 20:40:23 (GMT)
commit8f0cec6ac74b908b83bf2235799e79bdebd74898 (patch)
tree7c6de3069361bf433cded2b36f59521552e2f166 /src/H5Ddeprec.c
parent25f759d15adae9665b1608cb1d9e5dcead721d8d (diff)
downloadhdf5-8f0cec6ac74b908b83bf2235799e79bdebd74898.zip
hdf5-8f0cec6ac74b908b83bf2235799e79bdebd74898.tar.gz
hdf5-8f0cec6ac74b908b83bf2235799e79bdebd74898.tar.bz2
[svn-r22306] add a request id to each of the VOL callbacks and update the native
plugin to pass a NULL request
Diffstat (limited to 'src/H5Ddeprec.c')
-rw-r--r--src/H5Ddeprec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Ddeprec.c b/src/H5Ddeprec.c
index 23f68ee..23d9423 100644
--- a/src/H5Ddeprec.c
+++ b/src/H5Ddeprec.c
@@ -167,7 +167,7 @@ H5Dcreate1(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't set property value for lcpl id")
/* Create the dataset through the VOL */
- if((ret_value = H5VL_dataset_create(loc_id, name, dcpl_id, H5P_DATASET_ACCESS_DEFAULT)) < 0)
+ if((ret_value = H5VL_dataset_create(loc_id, name, dcpl_id, H5P_DATASET_ACCESS_DEFAULT, -1)) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to create dataset")
done:
@@ -207,7 +207,7 @@ H5Dopen1(hid_t loc_id, const char *name)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name")
/* Open the dataset through the VOL */
- if((ret_value = H5VL_dataset_open(loc_id, name, dapl_id)) < 0)
+ if((ret_value = H5VL_dataset_open(loc_id, name, dapl_id, -1)) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to open dataset")
done: