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_common.h | |
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_common.h')
-rw-r--r-- | tools/h5diff/h5diff_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5diff/h5diff_common.h b/tools/h5diff/h5diff_common.h index 31b1b29..1d0280e 100644 --- a/tools/h5diff/h5diff_common.h +++ b/tools/h5diff/h5diff_common.h @@ -20,5 +20,5 @@ int check_n_input( const char* ); int check_f_input( const char* ); void parse_input(int argc, const char* argv[], const char** fname1, const char** fname2, const char** objname1, const char** objname2, diff_opt_t* options); void h5diff_exit(int status); -void print_results(diff_opt_t* options); +void print_results(diff_opt_t* options, hsize_t nfound); |