diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-17 02:51:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-17 02:51:21 (GMT) |
commit | b8dbd390db9b47e73c6120ba61724b1e20ab333d (patch) | |
tree | 1fbcef76bf2cc480c2a57e5e26b599f82d85bc7c /test/set_extend.c | |
parent | 855aa23823a1091262524773626de3d920838e72 (diff) | |
download | hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.zip hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.tar.gz hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.tar.bz2 |
[svn-r4978] Purpose:
Code cleanup
Description:
Cleanup compiler warnings found by the SGI compiler and gcc 3.0
Platforms tested:
FreeBSD 4.5 w/gcc 3.0 (hack) && IRIX64 (modi4)
Diffstat (limited to 'test/set_extend.c')
-rw-r--r-- | test/set_extend.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/set_extend.c b/test/set_extend.c index 29ff9a5..a076483 100644 --- a/test/set_extend.c +++ b/test/set_extend.c @@ -29,10 +29,12 @@ int main( void ) hsize_t dims_out[2]; hsize_t maxdims[2] = {H5S_UNLIMITED, H5S_UNLIMITED}; int data1[3][3] = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} }; +#if 0 int buf1[3][3]; +#endif int buf2[2][2]; herr_t status; - int i, j; + hsize_t i, j; TESTING("extend dataset"); |