summaryrefslogtreecommitdiffstats
path: root/src/H5Zdeflate.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-13 21:08:10 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-13 21:08:10 (GMT)
commitd1b421f1959b5d6a5b3524535b1f7bc7e1a99388 (patch)
tree98e2c9f15e5616ff2198058e7c82a04ad9d7d706 /src/H5Zdeflate.c
parent5f41cdba4dc7cbc2c1eeca6d24ac2e94002bdbb2 (diff)
downloadhdf5-d1b421f1959b5d6a5b3524535b1f7bc7e1a99388.zip
hdf5-d1b421f1959b5d6a5b3524535b1f7bc7e1a99388.tar.gz
hdf5-d1b421f1959b5d6a5b3524535b1f7bc7e1a99388.tar.bz2
[svn-r2884] Purpose:
Removed warnings Description: Unused parameters Solution: Put UNUSED macro before unused params. Platforms tested: Linux
Diffstat (limited to 'src/H5Zdeflate.c')
-rw-r--r--src/H5Zdeflate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Zdeflate.c b/src/H5Zdeflate.c
index 6edb956..e2a5359 100644
--- a/src/H5Zdeflate.c
+++ b/src/H5Zdeflate.c
@@ -40,9 +40,9 @@ static intn interface_initialize_g = 0;
*-------------------------------------------------------------------------
*/
size_t
-H5Z_filter_deflate (unsigned flags, size_t cd_nelmts,
- const unsigned cd_values[], size_t nbytes,
- size_t *buf_size, void **buf)
+H5Z_filter_deflate (unsigned UNUSED flags, size_t cd_nelmts,
+ const unsigned cd_values[], size_t UNUSED nbytes,
+ size_t * UNUSED buf_size, void ** UNUSED buf)
{
size_t ret_value = 0;
void *outbuf = NULL;