diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2003-04-29 00:01:04 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2003-04-29 00:01:04 (GMT) |
commit | 2db5bd023a08bbb8c55f113830765eb8e61d80e5 (patch) | |
tree | faf11706266ab9b2419aed70ff58b0c2d825dab9 /test/dsets.c | |
parent | e42dba5336d382d401d753609d415155243f7086 (diff) | |
download | hdf5-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:
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |