summaryrefslogtreecommitdiffstats
path: root/src/H5Pfapl.c
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/H5Pfapl.c
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/H5Pfapl.c')
-rw-r--r--src/H5Pfapl.c2
1 files changed, 1 insertions, 1 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")