summaryrefslogtreecommitdiffstats
path: root/src/H5FDsec2.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1999-09-30 00:02:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1999-09-30 00:02:13 (GMT)
commit7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699 (patch)
tree59fa2c71cd354680db45abdbec59e976d30b5d7d /src/H5FDsec2.c
parent72cf03cdbdce7b7bdfcac89c644129ca8ec39463 (diff)
downloadhdf5-7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699.zip
hdf5-7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699.tar.gz
hdf5-7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699.tar.bz2
[svn-r1695] Fixed various compiler warnings..
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r--src/H5FDsec2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c
index 2819300..de887c9 100644
--- a/src/H5FDsec2.c
+++ b/src/H5FDsec2.c
@@ -236,7 +236,7 @@ H5Pset_fapl_sec2(hid_t fapl_id)
*-------------------------------------------------------------------------
*/
static H5FD_t *
-H5FD_sec2_open(const char *name, unsigned flags, hid_t fapl_id/*unused*/,
+H5FD_sec2_open(const char *name, unsigned flags, hid_t UNUSED fapl_id,
haddr_t maxaddr)
{
unsigned o_flags;
@@ -455,7 +455,7 @@ H5FD_sec2_get_eof(H5FD_t *_file)
*-------------------------------------------------------------------------
*/
static herr_t
-H5FD_sec2_read(H5FD_t *_file, hid_t dxpl_id/*unused*/, haddr_t addr,
+H5FD_sec2_read(H5FD_t *_file, hid_t UNUSED dxpl_id, haddr_t addr,
hsize_t size, void *buf/*out*/)
{
H5FD_sec2_t *file = (H5FD_sec2_t*)_file;
@@ -528,7 +528,7 @@ H5FD_sec2_read(H5FD_t *_file, hid_t dxpl_id/*unused*/, haddr_t addr,
*-------------------------------------------------------------------------
*/
static herr_t
-H5FD_sec2_write(H5FD_t *_file, hid_t dxpl_id/*unused*/, haddr_t addr,
+H5FD_sec2_write(H5FD_t *_file, hid_t UNUSED dxpl_id, haddr_t addr,
hsize_t size, const void *buf)
{
H5FD_sec2_t *file = (H5FD_sec2_t*)_file;