summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-04-16 08:34:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-04-16 08:34:27 (GMT)
commitccdf15d88a9dd003158126e75786243dc4261fc6 (patch)
treef89c7a517177a60e134cebe27f4516c25aa235fd /src
parentbd4d0d62bdf902820b1f5ae4c09f8347b6b5f04e (diff)
downloadhdf5-ccdf15d88a9dd003158126e75786243dc4261fc6.zip
hdf5-ccdf15d88a9dd003158126e75786243dc4261fc6.tar.gz
hdf5-ccdf15d88a9dd003158126e75786243dc4261fc6.tar.bz2
[svn-r29712] Description:
Minor code cleanups to address typos & warnings. Tested on: MaOSX/64 10.11.4 (amazon) w/serial & parallel (Too minor to require h5committest)
Diffstat (limited to 'src')
-rw-r--r--src/H5Pfapl.c2
-rw-r--r--src/H5Pint.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Pfapl.c b/src/H5Pfapl.c
index 0010c15..1fbc3b8 100644
--- a/src/H5Pfapl.c
+++ b/src/H5Pfapl.c
@@ -778,7 +778,7 @@ H5P_peek_driver_info(H5P_genplist_t *plist)
if(H5P_peek(plist, H5F_ACS_FILE_DRV_NAME, &driver_prop) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, NULL, "can't get driver info")
- ret_value = (void *)driver_prop.driver_info;
+ ret_value = driver_prop.driver_info;
} /* end if */
else
HGOTO_ERROR(H5E_PLIST, H5E_BADTYPE, NULL, "not a file access property list")
diff --git a/src/H5Pint.c b/src/H5Pint.c
index a222082..099d239 100644
--- a/src/H5Pint.c
+++ b/src/H5Pint.c
@@ -524,7 +524,7 @@ H5P_term_package(void)
if(nlist == 0 && nclass > 0) {
(void)H5I_clear_type(H5I_GENPROP_CLS, FALSE, FALSE);
- /* Reset the default property lists, if they've been closed */
+ /* Reset the default property classes, if they've been closed */
if(H5I_nmembers(H5I_GENPROP_CLS) == 0) {
H5P_CLS_ROOT_g =
H5P_CLS_OBJECT_CREATE_g =