diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-04-26 19:33:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-04-26 19:33:45 (GMT) |
commit | f63b2c50ac95fb8363a9b8143d3a3d5f50c58d35 (patch) | |
tree | 840f2187be73a641a816d668682478ea90670be8 /src/H5Ppublic.h | |
parent | 75b926c96aa0716e0936d6fa5dfad1142fe14331 (diff) | |
download | hdf5-f63b2c50ac95fb8363a9b8143d3a3d5f50c58d35.zip hdf5-f63b2c50ac95fb8363a9b8143d3a3d5f50c58d35.tar.gz hdf5-f63b2c50ac95fb8363a9b8143d3a3d5f50c58d35.tar.bz2 |
[svn-r29815] Description:
Change 'value' pointer to H5Pset() from 'void *' to 'const void *'.
Tested on:
MacOSX/64 10.11.4 (amazon) w/serial
(h5committest forthcoming)
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index 5fdb8b8..67727ce 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -234,7 +234,7 @@ H5_DLL herr_t H5Pinsert2(hid_t plist_id, const char *name, size_t size, void *value, H5P_prp_set_func_t prp_set, H5P_prp_get_func_t prp_get, H5P_prp_delete_func_t prp_delete, H5P_prp_copy_func_t prp_copy, H5P_prp_compare_func_t prp_cmp, H5P_prp_close_func_t prp_close); -H5_DLL herr_t H5Pset(hid_t plist_id, const char *name, void *value); +H5_DLL herr_t H5Pset(hid_t plist_id, const char *name, const void *value); H5_DLL htri_t H5Pexist(hid_t plist_id, const char *name); H5_DLL herr_t H5Pencode(hid_t plist_id, void *buf, size_t *nalloc); H5_DLL hid_t H5Pdecode(const void *buf); |