summaryrefslogtreecommitdiffstats
path: root/src/H5FDprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-11-06 13:40:37 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-11-06 13:40:37 (GMT)
commit3ddea291c67480621189e7563d3151c6caf519a1 (patch)
treead9d247dc2517a049e7b7bd79d6453cc234c2afa /src/H5FDprivate.h
parent63d9e7e914378e047e6b555778bf337f122bfe13 (diff)
downloadhdf5-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/H5FDprivate.h')
-rw-r--r--src/H5FDprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h
index d522f63..2dacf25 100644
--- a/src/H5FDprivate.h
+++ b/src/H5FDprivate.h
@@ -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,