diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-29 04:21:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-29 04:21:45 (GMT) |
commit | f3ad03a538809f14ef6f6380409ee4a340b47c97 (patch) | |
tree | efa1e551cd068aedc5791896f74de0aca24181b3 /test/vol.c | |
parent | d442fe2d9815a83f5010cca9a878974e286c27f9 (diff) | |
download | hdf5-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.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 */ |