summaryrefslogtreecommitdiffstats
path: root/src/H5Pint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-04-26 19:33:45 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-04-26 19:33:45 (GMT)
commitf63b2c50ac95fb8363a9b8143d3a3d5f50c58d35 (patch)
tree840f2187be73a641a816d668682478ea90670be8 /src/H5Pint.c
parent75b926c96aa0716e0936d6fa5dfad1142fe14331 (diff)
downloadhdf5-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/H5Pint.c')
-rw-r--r--src/H5Pint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Pint.c b/src/H5Pint.c
index 099d239..8e9a9bc 100644
--- a/src/H5Pint.c
+++ b/src/H5Pint.c
@@ -2997,7 +2997,7 @@ done:
herr_t H5P_set(plist, name, value)
H5P_genplist_t *plist; IN: Property list to find property in
const char *name; IN: Name of property to set
- void *value; IN: Pointer to the value for the property
+ const void *value; IN: Pointer to the value for the property
RETURNS
Returns non-negative on success, negative on failure.
DESCRIPTION