summaryrefslogtreecommitdiffstats
path: root/tools/h5dump
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-05 21:33:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-05 21:33:26 (GMT)
commite3966680ef87440f0addd704c80c969adc5468b9 (patch)
tree267377db33639dc3fe79d6ee73d7545dc4cd9eff /tools/h5dump
parent6930f2e32df5651c66d3bf3e8fea9b6de23b1843 (diff)
downloadhdf5-e3966680ef87440f0addd704c80c969adc5468b9.zip
hdf5-e3966680ef87440f0addd704c80c969adc5468b9.tar.gz
hdf5-e3966680ef87440f0addd704c80c969adc5468b9.tar.bz2
[svn-r13948] Description:
Make h5dump more gracious and informative about objects it doesn't understand. Tested on: Mac OS X/32 10.4.10 (amazon) No need for h5committest - very minor
Diffstat (limited to 'tools/h5dump')
-rw-r--r--tools/h5dump/h5dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 9a7385f..ac4c1d2 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -1421,7 +1421,7 @@ dump_all(hid_t group, const char *name, void * op_data)
/* Stat the object */
if(H5Gget_objinfo(group, name, FALSE, &statbuf) < 0) {
- error_msg(progname, "unable to get object information\n");
+ error_msg(progname, "unable to get object information for \"%s\"\n", name);
d_status = EXIT_FAILURE;
ret = FAIL;
goto done;