summaryrefslogtreecommitdiffstats
path: root/test/vol.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-11-29 04:21:45 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-11-29 04:21:45 (GMT)
commitf3ad03a538809f14ef6f6380409ee4a340b47c97 (patch)
treeefa1e551cd068aedc5791896f74de0aca24181b3 /test/vol.c
parentd442fe2d9815a83f5010cca9a878974e286c27f9 (diff)
downloadhdf5-f3ad03a538809f14ef6f6380409ee4a340b47c97.zip
hdf5-f3ad03a538809f14ef6f6380409ee4a340b47c97.tar.gz
hdf5-f3ad03a538809f14ef6f6380409ee4a340b47c97.tar.bz2
Switch H5VL_class_value_t from enum to unsigned integer
Diffstat (limited to 'test/vol.c')
-rw-r--r--test/vol.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/vol.c b/test/vol.c
index 177c5b8..c3e3325 100644
--- a/test/vol.c
+++ b/test/vol.c
@@ -40,7 +40,7 @@
*/
static const H5VL_class_t fake_vol_g = {
0, /* version */
- (H5VL_class_value_t)999, /* value */
+ (H5VL_class_value_t)501, /* value */
FAKE_VOL_NAME, /* name */
0, /* capability flags */
NULL, /* initialize */
@@ -49,10 +49,12 @@ static const H5VL_class_t fake_vol_g = {
NULL, /* info copy */
NULL, /* info compare */
NULL, /* info free */
+ NULL, /* info to str */
+ NULL, /* str to info */
NULL, /* get_object */
NULL, /* get_wrap_ctx */
- NULL, /* free_wrap_ctx */
NULL, /* wrap_object */
+ NULL, /* free_wrap_ctx */
{ /* attribute_cls */
NULL, /* create */
NULL, /* open */
@@ -114,6 +116,7 @@ static const H5VL_class_t fake_vol_g = {
},
{ /* request_cls */
NULL, /* wait */
+ NULL, /* notify */
NULL, /* cancel */
NULL, /* specific */
NULL, /* optional */