diff options
Diffstat (limited to 'src/H5Pfapl.c')
-rw-r--r-- | src/H5Pfapl.c | 2 |
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") |