diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-22 17:48:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-22 17:48:24 (GMT) |
commit | e5fc40662c6520edc50c7e68c96e24eb766972f2 (patch) | |
tree | c619f15e55b290c16fc082da15746864ba7c5b81 /src/H5Snone.c | |
parent | 7527ed7d6f3d122e2b00e919c4a8d993b1e196be (diff) | |
download | hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.zip hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.tar.gz hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.tar.bz2 |
[svn-r5219] Purpose:
Code cleanup
Description:
Clean up warnings from gcc 3.1
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5Snone.c')
-rw-r--r-- | src/H5Snone.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Snone.c b/src/H5Snone.c index ed92f13..c440eea 100644 --- a/src/H5Snone.c +++ b/src/H5Snone.c @@ -83,7 +83,7 @@ H5S_none_select_serialize (const H5S_t *space, uint8_t *buf) REVISION LOG --------------------------------------------------------------------------*/ herr_t -H5S_none_select_deserialize (H5S_t *space, const uint8_t * UNUSED buf) +H5S_none_select_deserialize (H5S_t *space, const uint8_t UNUSED *buf) { herr_t ret_value=FAIL; /* return value */ @@ -207,7 +207,7 @@ done: --------------------------------------------------------------------------*/ herr_t H5S_none_select_iterate(void * UNUSED buf, hid_t UNUSED type_id, H5S_t * UNUSED space, H5D_operator_t UNUSED op, - void * UNUSED operator_data) + void UNUSED *operator_data) { herr_t ret_value=SUCCEED; /* return value */ |