diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2019-06-12 21:06:21 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2019-06-12 21:06:21 (GMT) |
commit | 9a82fa66d4b5937cac016cc04f51e60028eb8a24 (patch) | |
tree | fe4193b6d71ae3cb6d604caecfc5551f85951e2a /src | |
parent | 7e929a9bec66863f1f31721282d1fa459bc486ff (diff) | |
parent | 0742c15fca95965ed4eb87c6d54f41bb07bd4526 (diff) | |
download | hdf5-9a82fa66d4b5937cac016cc04f51e60028eb8a24.zip hdf5-9a82fa66d4b5937cac016cc04f51e60028eb8a24.tar.gz hdf5-9a82fa66d4b5937cac016cc04f51e60028eb8a24.tar.bz2 |
Merge pull request #1708 in HDFFV/hdf5 from ~BRTNFLD/hdf5_msb:H10621 to develop
* commit '0742c15fca95965ed4eb87c6d54f41bb07bd4526':
makefile clean-up
move the vol_info to an optional parameter
added H5Pset_vol
added vol connector
added test for vol_connector
removed H5VL constants
removed VOLL NULL connector and replaced it with native VOL
added connector_name test
added missing files
add tests
added more tests
added missing files
Implemented VOL APIs and C constants, no tests
Implemented VOL APIs and C constants, no tests
initial API impl.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5VLpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h index ebe424a..a765d2a 100644 --- a/src/H5VLpublic.h +++ b/src/H5VLpublic.h @@ -362,7 +362,7 @@ typedef int H5VL_class_value_t; /* VOL connector identifier values */ #define H5_VOL_INVALID (-1) /* Invalid ID for VOL connector iD */ -#define H5_VOL_NATIVE 0 /* Native HDF5 file formnat VOL connector */ +#define H5_VOL_NATIVE 0 /* Native HDF5 file format VOL connector */ #define H5_VOL_RESERVED 256 /* VOL connector IDs below this value are reserved for library use */ #define H5_VOL_MAX 65535 /* Maximum VOL connector ID */ |