diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-01-16 15:31:55 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-01-16 15:31:55 (GMT) |
commit | efbde3c2f3555df156c8b4ed42fcf9e98b5b16ef (patch) | |
tree | 1199e2cabf76e857b576a858675de101a98ba4ad /tools/lib/h5diff.c | |
parent | 5112a79d81b500bc1fa9cad9580afb7de029ab0c (diff) | |
download | hdf5-efbde3c2f3555df156c8b4ed42fcf9e98b5b16ef.zip hdf5-efbde3c2f3555df156c8b4ed42fcf9e98b5b16ef.tar.gz hdf5-efbde3c2f3555df156c8b4ed42fcf9e98b5b16ef.tar.bz2 |
[svn-r8074] Purpose:
added h5repack and h5diff support for copying and differences of references to dataset regions
modified the behaviour in the diff of attributes, when a difference in name is detected
in the attribute cycle (number of attributes of object), instead of exiting the
cycle, rather continue
Description:
Solution:
Platforms tested:
linux
solaris
AIX
Misc. update:
Diffstat (limited to 'tools/lib/h5diff.c')
-rw-r--r-- | tools/lib/h5diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index eeabd8c..38acf82 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -58,12 +58,12 @@ int h5diff(const char *fname1, /* Open the files */ if ((file1_id=H5Fopen(fname1,H5F_ACC_RDONLY,H5P_DEFAULT))<0 ) { - printf("h5diff: %s: No such file or directory\n", fname1 ); + printf("h5diff: <%s>: unable to open file\n", fname1 ); nfound = -1; } if ((file2_id=H5Fopen(fname2,H5F_ACC_RDONLY,H5P_DEFAULT))<0 ) { - printf("h5diff: %s: No such file or directory\n", fname2 ); + printf("h5diff: <%s>: unable to open file\n", fname2 ); nfound = -1; } /* enable error reporting */ |