[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)
This commit is contained in:
Quincey Koziol 2016-04-16 03:34:27 -05:00
parent bd4d0d62bd
commit ccdf15d88a
2 changed files with 2 additions and 2 deletions

View File

@ -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")

View File

@ -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 =