diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-12-18 21:34:34 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-12-18 21:34:34 (GMT) |
commit | f60e8bb05e3203054e27bf41d0ebc657537736ed (patch) | |
tree | a4cf82af6a2dc2c77858c4b49b0838ed4212a5b2 /src/H5VLint.c | |
parent | b486fd10a44df052c8c2f030ab8c2c25dfa0f8a2 (diff) | |
download | hdf5-f60e8bb05e3203054e27bf41d0ebc657537736ed.zip hdf5-f60e8bb05e3203054e27bf41d0ebc657537736ed.tar.gz hdf5-f60e8bb05e3203054e27bf41d0ebc657537736ed.tar.bz2 |
Moved the optional enums to H5VLnative.h and converted to an int
typedef and a set of #defines.
Diffstat (limited to 'src/H5VLint.c')
-rw-r--r-- | src/H5VLint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLint.c b/src/H5VLint.c index 17dfc1f..d51be0c 100644 --- a/src/H5VLint.c +++ b/src/H5VLint.c @@ -627,7 +627,7 @@ H5VL_register_connector(const void *_cls, hbool_t app_ref, hid_t vipl_id) done: if (ret_value < 0 && saved) { if (saved->name) - H5MM_xfree(saved->name); + H5MM_xfree((void *)(saved->name)); /* Casting away const OK -QAK */ H5FL_FREE(H5VL_class_t, saved); } |