diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-05-26 15:37:21 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-05-26 15:37:21 (GMT) |
commit | 7912d54d4d594a617e31077ac12be7b385a78521 (patch) | |
tree | fc772b24b2fe4c190adf1d9d9a2c3af18565d342 /tools | |
parent | b770b9065d2bafdda2ae5701c74b19d789ab0460 (diff) | |
download | hdf5-7912d54d4d594a617e31077ac12be7b385a78521.zip hdf5-7912d54d4d594a617e31077ac12be7b385a78521.tar.gz hdf5-7912d54d4d594a617e31077ac12be7b385a78521.tar.bz2 |
[svn-r8577] Purpose:
bug fix
Description:
a variable declaration was left outside a #ifdef for version 1.4
Solution:
Platforms tested:
linux
Misc. update:
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dump/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index f1c0a65..6ceb916 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -2369,8 +2369,8 @@ dump_fcpl(hid_t fid) int sym_lk; #else unsigned sym_lk; /* symbol table B-tree leaf 'K' value */ - int istore_ik; /* indexed storage B-tree initial 'K' value */ #endif + int istore_ik; /* indexed storage B-tree initial 'K' value */ hid_t fcpl; /* file creation property list ID */ hid_t fapl; /* file access property list ID */ hsize_t userblock; /* userblock size retrieved from FCPL */ |