diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-19 23:11:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-19 23:11:06 (GMT) |
commit | 7438609ee2a445521b461faa122554b253283f51 (patch) | |
tree | 8fd14659340dc57719e85ddc5a92edbca64bcb66 /tools/h5dumptst.c | |
parent | cfea54b1e255966549829597c18f470f7156be1d (diff) | |
download | hdf5-7438609ee2a445521b461faa122554b253283f51.zip hdf5-7438609ee2a445521b461faa122554b253283f51.tar.gz hdf5-7438609ee2a445521b461faa122554b253283f51.tar.bz2 |
[svn-r2162] Various small fixes to address SGI compiler warnings.
Diffstat (limited to 'tools/h5dumptst.c')
-rw-r--r-- | tools/h5dumptst.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/h5dumptst.c b/tools/h5dumptst.c index e48f0b9..85d7825 100644 --- a/tools/h5dumptst.c +++ b/tools/h5dumptst.c @@ -58,6 +58,7 @@ typedef struct s1_t { void test_enum(void); void test_objref(void); void test_datareg(void); +void test_nestcomp(void); @@ -1574,7 +1575,7 @@ void test_datareg(void){ void test_nestcomp(){ hid_t file,space,type,type2,dataset; - int i, maxdim = 5, status = 0; + int i, maxdim = 5, status; hsize_t dim = 5; int y = 1; |