summaryrefslogtreecommitdiffstats
path: root/tools/h5diff/h5diff_common.c
diff options
context:
space:
mode:
authorJonathan Kim <jkm@hdfgroup.org>2011-04-06 20:59:37 (GMT)
committerJonathan Kim <jkm@hdfgroup.org>2011-04-06 20:59:37 (GMT)
commit00b2dc91371db626740ec579c88bc7a852280701 (patch)
treee5412ba7f6ef0a526edcc7b0022916ca923c88f4 /tools/h5diff/h5diff_common.c
parent434c14d2f25b003d96b6ee8c46a4e7b45a77f844 (diff)
downloadhdf5-00b2dc91371db626740ec579c88bc7a852280701.zip
hdf5-00b2dc91371db626740ec579c88bc7a852280701.tar.gz
hdf5-00b2dc91371db626740ec579c88bc7a852280701.tar.bz2
[svn-r20427] Purpose:
Fixed Bug 2184 - GMQS: h5diff - incorrect calculation code for --use-system-epsilon option Description: Additional check in from the previous checkin r20424. Updated help page again. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE)
Diffstat (limited to 'tools/h5diff/h5diff_common.c')
-rw-r--r--tools/h5diff/h5diff_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5diff/h5diff_common.c b/tools/h5diff/h5diff_common.c
index 178f385..fd679d3 100644
--- a/tools/h5diff/h5diff_common.c
+++ b/tools/h5diff/h5diff_common.c
@@ -488,9 +488,9 @@ void usage(void)
printf(" --use-system-epsilon Print difference if (|a-b| > EPSILON), EPSILON is\n");
printf(" a system epsilon value.\n");
printf(" If the system epsilon is not defined, the below\n");
- printf(" predefined value will be used:\n");
- printf(" FLT_EPSILON = 1.19209E-07 for float\n");
- printf(" DBL_EPSILON = 2.22045E-16 for double\n");
+ printf(" one of the following predefined values will be used:\n");
+ printf(" FLT_EPSILON = 1.19209E-07 for floating-point type\n");
+ printf(" DBL_EPSILON = 2.22045E-16 for double percision type\n");
printf(" --exclude-path \"path\" Exclude the specified path to an object when\n");
printf(" comparing files or groups. If a group is excluded,\n");
printf(" all member objects will also be excluded.\n");