summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2003-04-29 00:01:04 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2003-04-29 00:01:04 (GMT)
commit2db5bd023a08bbb8c55f113830765eb8e61d80e5 (patch)
treefaf11706266ab9b2419aed70ff58b0c2d825dab9
parente42dba5336d382d401d753609d415155243f7086 (diff)
downloadhdf5-2db5bd023a08bbb8c55f113830765eb8e61d80e5.zip
hdf5-2db5bd023a08bbb8c55f113830765eb8e61d80e5.tar.gz
hdf5-2db5bd023a08bbb8c55f113830765eb8e61d80e5.tar.bz2
[svn-r6773]
Purpose: Windows maintenance and code cleanup Description: There were a lot of places in the source code where varibale was declared but never used. Solution: Cleaned the source code to avoid warnings on Windows and Unix platforms. Platforms tested: arabica, modi4, Windows Probably my environment is wrong on Linux, cannot compile at all when fortran is enabled If daily tests fails tomorrow, this will be my fault but I want to go home now :-) Misc. update:
-rw-r--r--src/H5Z.c2
-rw-r--r--test/dsets.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index f4ce164..f8265d3 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -123,8 +123,8 @@ done:
int
H5Z_term_interface (void)
{
- size_t i;
#ifdef H5Z_DEBUG
+ size_t i;
int dir, nprint=0;
char comment[16], bandwidth[32];
#endif
diff --git a/test/dsets.c b/test/dsets.c
index e8d213a..ee54058 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -593,7 +593,7 @@ test_max_compact(hid_t fapl)
herr_t status;
int *wbuf, *rbuf;
char filename[1024];
- int i, j, n;
+ int i, n;
TESTING("compact dataset of maximal size");