diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-09-07 19:08:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-09-07 19:08:07 (GMT) |
commit | 33efca34cb30bcf7e17f6e3aa580233bd58a0075 (patch) | |
tree | e46dc72d227395ca6aaa73d51a36a0f95ca933b8 | |
parent | 3bed8703631cbcffb215ccd82235fcc293e14218 (diff) | |
download | hdf5-33efca34cb30bcf7e17f6e3aa580233bd58a0075.zip hdf5-33efca34cb30bcf7e17f6e3aa580233bd58a0075.tar.gz hdf5-33efca34cb30bcf7e17f6e3aa580233bd58a0075.tar.bz2 |
[svn-r14137] Description:
Correct name used for checking objects to operate on for h5repack,
exposed by recent traversal routine changes.
Tested on:
Solaris/32 5.10 (linew) w/szip
-rw-r--r-- | tools/h5repack/h5repack_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack_list.c b/tools/h5repack/h5repack_list.c index 78b8858..4bbfd59 100644 --- a/tools/h5repack/h5repack_list.c +++ b/tools/h5repack/h5repack_list.c @@ -120,7 +120,7 @@ int check_objects(const char* fname, } else { - if ((did=H5Dopen(fid,travt->objs[i].name))<0) + if ((did=H5Dopen(fid,name))<0) goto out; if ((sid=H5Dget_space(did))<0) goto out; |