diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-12-01 15:42:26 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-12-01 15:42:26 (GMT) |
commit | 7855afc4b2a1fd4c266f96aa7a8dc21964e3bda3 (patch) | |
tree | cd6249d206edc65d4cece36460d3f15a571a9815 /tools/lib/h5diff.h | |
parent | 27c0fb2220c241337bd82426ca2c178bff2e3870 (diff) | |
download | hdf5-7855afc4b2a1fd4c266f96aa7a8dc21964e3bda3.zip hdf5-7855afc4b2a1fd4c266f96aa7a8dc21964e3bda3.tar.gz hdf5-7855afc4b2a1fd4c266f96aa7a8dc21964e3bda3.tar.bz2 |
[svn-r13003]
Cleaned warnings
h5diff_array.c:804: warning: passing arg 1 of `fabs' as floating rather
than integer due to prototype
introduced double precision arithmetic when possible instead of single
precision
Diffstat (limited to 'tools/lib/h5diff.h')
-rw-r--r-- | tools/lib/h5diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index ab873ae..e698770 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -28,9 +28,9 @@ typedef struct { int m_report; /* report mode: print the data */ int m_verbose; /* verbose mode: print the data, list of objcets, warnings */ int d; /* delta, absolute value to compare */ - float delta; /* delta value */ + double delta; /* delta value */ int p; /* relative error to compare*/ - float percent; /* relative error value */ + double percent; /* relative error value */ int n; /* count, compare up to count */ hsize_t count; /* count value */ int err_stat; /* an error ocurred (1, error, 0, no error) */ |