mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[svn-r7818] Purpose:
Warning cleanup Description: Make a parameter 'const' to clean up a warning during compiles. Platforms tested: FreeBSD 4.9 (sleipnir) too minor to require h5committest
This commit is contained in:
parent
63d9e7e914
commit
3ddea291c6
@ -617,7 +617,7 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5FD_fapl_open(H5P_genplist_t *plist, hid_t driver_id, void *driver_info)
|
||||
H5FD_fapl_open(H5P_genplist_t *plist, hid_t driver_id, const void *driver_info)
|
||||
{
|
||||
void *copied_driver_info; /* Temporary VFL driver info */
|
||||
herr_t ret_value=SUCCEED; /* Return value */
|
||||
@ -734,7 +734,7 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5FD_dxpl_open(H5P_genplist_t *plist, hid_t driver_id, void *driver_info)
|
||||
H5FD_dxpl_open(H5P_genplist_t *plist, hid_t driver_id, const void *driver_info)
|
||||
{
|
||||
void *copied_driver_info; /* Temporary VFL driver info */
|
||||
herr_t ret_value=SUCCEED; /* Return value */
|
||||
|
@ -45,10 +45,10 @@ H5_DLL hsize_t H5FD_sb_size(H5FD_t *file);
|
||||
H5_DLL herr_t H5FD_sb_encode(H5FD_t *file, char *name/*out*/, uint8_t *buf);
|
||||
H5_DLL herr_t H5FD_sb_decode(H5FD_t *file, const char *name, const uint8_t *buf);
|
||||
H5_DLL void *H5FD_fapl_get(H5FD_t *file);
|
||||
H5_DLL herr_t H5FD_fapl_open(struct H5P_genplist_t *plist, hid_t driver_id, void *driver_info);
|
||||
H5_DLL herr_t H5FD_fapl_open(struct H5P_genplist_t *plist, hid_t driver_id, const void *driver_info);
|
||||
H5_DLL herr_t H5FD_fapl_copy(hid_t driver_id, const void *fapl, void **copied_fapl);
|
||||
H5_DLL herr_t H5FD_fapl_close(hid_t driver_id, void *fapl);
|
||||
H5_DLL herr_t H5FD_dxpl_open(struct H5P_genplist_t *plist, hid_t driver_id, void *driver_info);
|
||||
H5_DLL herr_t H5FD_dxpl_open(struct H5P_genplist_t *plist, hid_t driver_id, const void *driver_info);
|
||||
H5_DLL herr_t H5FD_dxpl_copy(hid_t driver_id, const void *dxpl, void **copied_dxpl);
|
||||
H5_DLL herr_t H5FD_dxpl_close(hid_t driver_id, void *dxpl);
|
||||
H5_DLL H5FD_t *H5FD_open(const char *name, unsigned flags, hid_t fapl_id,
|
||||
|
Loading…
Reference in New Issue
Block a user