summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-09-08 19:07:33 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-09-08 19:07:33 (GMT)
commit2f6965f07124e003b02b172c5d428d7863797d18 (patch)
tree7ccecbc701add138c428232e548545ad4b1b0b19 /src/H5VLnative.c
parente424a22c1d2e839e7feab1f040dc0914fc416f1f (diff)
downloadhdf5-2f6965f07124e003b02b172c5d428d7863797d18.zip
hdf5-2f6965f07124e003b02b172c5d428d7863797d18.tar.gz
hdf5-2f6965f07124e003b02b172c5d428d7863797d18.tar.bz2
[svn-r25579] Add version number for VOL plugins in VOL Plugin structure.
Diffstat (limited to 'src/H5VLnative.c')
-rw-r--r--src/H5VLnative.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5VLnative.c b/src/H5VLnative.c
index 18bd09e..b528121 100644
--- a/src/H5VLnative.c
+++ b/src/H5VLnative.c
@@ -123,8 +123,9 @@ static herr_t H5VL_native_object_specific(void *obj, H5VL_loc_params_t loc_param
static herr_t H5VL_native_object_optional(void *obj, hid_t dxpl_id, void **req, va_list arguments);
static H5VL_class_t H5VL_native_g = {
- NATIVE,
- "native", /* name */
+ HDF5_VOL_NATIVE_VERSION_1, /* Version number */
+ NATIVE, /* Plugin value */
+ "native", /* Plugin name */
NULL, /* initialize */
NULL, /* terminate */
0, /* fapl_size */