diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-03-05 16:26:50 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-03-05 16:26:50 (GMT) |
commit | bd01f34589a4d3d790312a844bfd0cce28721f31 (patch) | |
tree | 75517f698815cf1a71af8eda28055cf8c75cd585 /tools/lib/h5diff_dset.c | |
parent | 44f312b183305cf37295595bfd3f5df40fc637be (diff) | |
download | hdf5-bd01f34589a4d3d790312a844bfd0cce28721f31.zip hdf5-bd01f34589a4d3d790312a844bfd0cce28721f31.tar.gz hdf5-bd01f34589a4d3d790312a844bfd0cce28721f31.tar.bz2 |
[svn-r13451]
h5diff bug fix, attributes differences were not being count for total
differences
Revision of H5Ocopy call in h5repack
Diffstat (limited to 'tools/lib/h5diff_dset.c')
-rw-r--r-- | tools/lib/h5diff_dset.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/lib/h5diff_dset.c b/tools/lib/h5diff_dset.c index 993a00f..602cce7 100644 --- a/tools/lib/h5diff_dset.c +++ b/tools/lib/h5diff_dset.c @@ -515,7 +515,8 @@ hsize_t diff_datasetid( hid_t did1, } } /* hyperslab read */ - + }/*cmp*/ + /*------------------------------------------------------------------------- * compare attributes * the if condition refers to cases when the dataset is a referenced object @@ -523,9 +524,7 @@ hsize_t diff_datasetid( hid_t did1, */ if (obj1_name) - diff_attr(did1,did2,obj1_name,obj2_name,options); - - }/*cmp*/ + nfound += diff_attr(did1,did2,obj1_name,obj2_name,options); /*------------------------------------------------------------------------- * close |