summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-06-15 13:39:46 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-06-15 13:39:46 (GMT)
commit7484f2e9cae4c7e4471aa691c58a3b8a0e1cddff (patch)
tree514b2bd227109c8df3709dfb1672cd376edd0073 /src/H5VLnative.c
parent87a81eb5afd4d24b2ba42ef78d8aee433c8e8639 (diff)
downloadhdf5-7484f2e9cae4c7e4471aa691c58a3b8a0e1cddff.zip
hdf5-7484f2e9cae4c7e4471aa691c58a3b8a0e1cddff.tar.gz
hdf5-7484f2e9cae4c7e4471aa691c58a3b8a0e1cddff.tar.bz2
[svn-r22465] add a vol_info parameter to the fapl and update some of the routines accordingly
insert (commented out though for now) public version of the VOL callback
Diffstat (limited to 'src/H5VLnative.c')
-rw-r--r--src/H5VLnative.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLnative.c b/src/H5VLnative.c
index bd003bc..7a97c1b 100644
--- a/src/H5VLnative.c
+++ b/src/H5VLnative.c
@@ -284,7 +284,7 @@ H5Pset_fapl_native(hid_t fapl_id)
if(NULL == (plist = H5P_object_verify(fapl_id, H5P_FILE_ACCESS)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
- ret_value = H5P_set_vol(plist, &H5VL_native_g);
+ ret_value = H5P_set_vol(plist, &H5VL_native_g, NULL);
done:
FUNC_LEAVE_API(ret_value)