diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-09-25 15:49:26 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-09-25 15:49:26 (GMT) |
commit | c439d91f811d91df590996cff2d3162c541bb1cf (patch) | |
tree | 2f4d529d110b2cb54bacc823795a38a5fa8bd137 /tools/h5diff/h5diff_main.c | |
parent | afcf6b7608a2468a6d5b01bad23d427312cf45ae (diff) | |
download | hdf5-c439d91f811d91df590996cff2d3162c541bb1cf.zip hdf5-c439d91f811d91df590996cff2d3162c541bb1cf.tar.gz hdf5-c439d91f811d91df590996cff2d3162c541bb1cf.tar.bz2 |
[svn-r12678] bug fix
the number of atribute differences was not added to the total sum of
differences
Diffstat (limited to 'tools/h5diff/h5diff_main.c')
-rw-r--r-- | tools/h5diff/h5diff_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5diff/h5diff_main.c b/tools/h5diff/h5diff_main.c index 454a033..95eecf4 100644 --- a/tools/h5diff/h5diff_main.c +++ b/tools/h5diff/h5diff_main.c @@ -63,7 +63,7 @@ int main(int argc, const char *argv[]) nfound = h5diff(fname1,fname2,objname1,objname2,&options); - print_results(&options); + print_results(&options,nfound); /*------------------------------------------------------------------------- * exit code |