diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-03-21 16:01:42 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-03-21 16:01:42 (GMT) |
commit | bd73819e2682bebcde6e9c3f1183acdb9608e6ce (patch) | |
tree | 436dc84e3f19b13b9ca7346d3fc74dceed22678a /tools/lib/h5diff.h | |
parent | 2db47ff504a58278019957f9e5bc446d58894fed (diff) | |
download | hdf5-bd73819e2682bebcde6e9c3f1183acdb9608e6ce.zip hdf5-bd73819e2682bebcde6e9c3f1183acdb9608e6ce.tar.gz hdf5-bd73819e2682bebcde6e9c3f1183acdb9608e6ce.tar.bz2 |
[svn-r12126] Purpose:
bug fix
Description:
the compare check for the datatype sign was not done in the correct place, causing invalid
comparisons to be made
Solution:
put it on the correct place
Platforms tested:
linux 32, 64
AIX
Misc. update:
Diffstat (limited to 'tools/lib/h5diff.h')
-rw-r--r-- | tools/lib/h5diff.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index a4cf65e..ffe7101 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -165,16 +165,7 @@ const char* get_type(int type); const char* get_class(H5T_class_t tclass); const char* get_sign(H5T_sign_t sign); void print_dims( int r, hsize_t *d ); -void print_pos( int *ph, - int per, - hsize_t curr_pos, - hsize_t *acc, - hsize_t *pos, - int rank, - const char *obj1, - const char *obj2 ); - -int print_objname(diff_opt_t *options, hsize_t nfound); +int print_objname(diff_opt_t *options, hsize_t nfound); #if defined (H5DIFF_DEBUG) |