summaryrefslogtreecommitdiffstats
path: root/src/H5Oplist.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-11-20 12:52:40 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-11-20 12:52:40 (GMT)
commitef92748be63cd0942846b5201fe72e7eb12e7d20 (patch)
treef48a634ec9e817ed87c70276e3bb87e91e1a0d38 /src/H5Oplist.c
parentb09b4662b49ce935880bb1ffccdcf2276d48ae88 (diff)
downloadhdf5-ef92748be63cd0942846b5201fe72e7eb12e7d20.zip
hdf5-ef92748be63cd0942846b5201fe72e7eb12e7d20.tar.gz
hdf5-ef92748be63cd0942846b5201fe72e7eb12e7d20.tar.bz2
[svn-r6108] Purpose:
Code cleanup. Description: Cleaned up compiler warnings & updated a few comments. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)} FreeBSD 4.7 (sleipnir)
Diffstat (limited to 'src/H5Oplist.c')
-rw-r--r--src/H5Oplist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Oplist.c b/src/H5Oplist.c
index 17aabc3..277fdd8 100644
--- a/src/H5Oplist.c
+++ b/src/H5Oplist.c
@@ -161,8 +161,8 @@ H5O_plist_decode(H5F_t UNUSED *f, const uint8_t *p, H5O_shared_t UNUSED *sh)
* Retrieve the name of the property class with its parent(s). It's a
* regular NULL terminated string.
*/
- pclass = H5P_open_class_path(p);
- p += HDstrlen(p) + 1; /* + 1 for the NULL */
+ pclass = H5P_open_class_path((const char *)p);
+ p += HDstrlen((const char *)p) + 1; /* + 1 for the NULL */
UINT_DECODE(p, nprops);
UINT_DECODE(p, hashsize);