diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-09 18:18:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-09 18:18:21 (GMT) |
commit | 7d9c86097afb9a00b8f37503b435091ff5aef07e (patch) | |
tree | b474ad4296036535594f532cf948a20c86ccda98 /test | |
parent | c390d06017bb7700f116b4d7523d586f5f9e6a9a (diff) | |
download | hdf5-7d9c86097afb9a00b8f37503b435091ff5aef07e.zip hdf5-7d9c86097afb9a00b8f37503b435091ff5aef07e.tar.gz hdf5-7d9c86097afb9a00b8f37503b435091ff5aef07e.tar.bz2 |
[svn-r6843] Purpose:
Code cleanup
Description:
Clean up warnings exposed by compiling on O2K. Also, revert some of Bill
and my changes to the H5S_mpi_opt_types_g, etc. and settle them back into their
original location.
Platforms tested:
h5committested.
Diffstat (limited to 'test')
-rw-r--r-- | test/tselect.c | 4 | ||||
-rw-r--r-- | test/tvlstr.c | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/test/tselect.c b/test/tselect.c index c53191e..528d15e 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -5249,11 +5249,11 @@ test_scalar_select2(void) } H5E_END_TRY; VERIFY(ret, FAIL, "H5Sselect_hyperslab"); - /* Select no elements in memory & file with "none" selections */ + /* Select no elements in memory & file with "none" selection */ ret = H5Sselect_none(sid); CHECK(ret, FAIL, "H5Sselect_none"); - /* Select no elements in memory & file with "none" selections */ + /* Select all elements in memory & file with "all" selection */ ret = H5Sselect_all(sid); CHECK(ret, FAIL, "H5Sselect_none"); diff --git a/test/tvlstr.c b/test/tvlstr.c index 3c34781..8a4ac99 100644 --- a/test/tvlstr.c +++ b/test/tvlstr.c @@ -440,7 +440,6 @@ static void test_compact_vlstring(void) { const char *wdata[SPACE1_DIM1] = {"one", "two", "three", "four"}; - const char *wdata2[SPACE1_DIM1] = {NULL, NULL, NULL, NULL}; char *rdata[SPACE1_DIM1]; /* Information read in */ hid_t fid1; /* HDF5 File IDs */ hid_t dataset; /* Dataset ID */ |