diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-06 13:40:37 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-06 13:40:37 (GMT) |
commit | 3ddea291c67480621189e7563d3151c6caf519a1 (patch) | |
tree | ad9d247dc2517a049e7b7bd79d6453cc234c2afa /src/H5FD.c | |
parent | 63d9e7e914378e047e6b555778bf337f122bfe13 (diff) | |
download | hdf5-3ddea291c67480621189e7563d3151c6caf519a1.zip hdf5-3ddea291c67480621189e7563d3151c6caf519a1.tar.gz hdf5-3ddea291c67480621189e7563d3151c6caf519a1.tar.bz2 |
[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
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |