summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff_util.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2005-06-28 16:25:42 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2005-06-28 16:25:42 (GMT)
commit4a5f83b8f0cf0d6899940f1940ac1f63bac847ca (patch)
tree4618cfc007f3b127e7cff92adf7416e2b4107a16 /tools/lib/h5diff_util.c
parent7592f727f409ebf9b179a1af636dbf072ee5477c (diff)
downloadhdf5-4a5f83b8f0cf0d6899940f1940ac1f63bac847ca.zip
hdf5-4a5f83b8f0cf0d6899940f1940ac1f63bac847ca.tar.gz
hdf5-4a5f83b8f0cf0d6899940f1940ac1f63bac847ca.tar.bz2
[svn-r10994] Purpose:
bug fix Description: when 2 objects were not comparable, the final print information for the non verbose mode printed "0 differences found" Solution: replaced instead with a Summary message that says "Some objects were not comparable" Platforms tested: linux solaris Misc. update:
Diffstat (limited to 'tools/lib/h5diff_util.c')
-rw-r--r--tools/lib/h5diff_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_util.c b/tools/lib/h5diff_util.c
index 34686c6..d29434c 100644
--- a/tools/lib/h5diff_util.c
+++ b/tools/lib/h5diff_util.c
@@ -284,7 +284,7 @@ diff_basename(const char *name)
size_t i;
if (name==NULL)
- return;
+ return NULL;
/* Find the end of the base name */
i = strlen(name);