summaryrefslogtreecommitdiffstats
path: root/tools/h5diff/h5diff_common.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2006-09-25 15:49:26 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2006-09-25 15:49:26 (GMT)
commitc439d91f811d91df590996cff2d3162c541bb1cf (patch)
tree2f4d529d110b2cb54bacc823795a38a5fa8bd137 /tools/h5diff/h5diff_common.c
parentafcf6b7608a2468a6d5b01bad23d427312cf45ae (diff)
downloadhdf5-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_common.c')
-rw-r--r--tools/h5diff/h5diff_common.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/h5diff/h5diff_common.c b/tools/h5diff/h5diff_common.c
index 9ac4d56..c822d42 100644
--- a/tools/h5diff/h5diff_common.c
+++ b/tools/h5diff/h5diff_common.c
@@ -181,7 +181,7 @@ void parse_input(int argc, const char* argv[], const char** fname1, const char**
*-------------------------------------------------------------------------
*/
-void print_results(diff_opt_t* options)
+void print_results(diff_opt_t* options, hsize_t nfound)
{
if (options->m_quiet || options->err_stat)
return;
@@ -202,6 +202,8 @@ void print_results(diff_opt_t* options)
printf("Use -v for a list of objects.\n");
}
+ print_found(nfound);
+
}
/*-------------------------------------------------------------------------