summaryrefslogtreecommitdiffstats
path: root/tools/h5dump
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-05 21:32:52 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-05 21:32:52 (GMT)
commit1df6377a96f8f0ad0319c8aaeefb8ffe2a3e8506 (patch)
tree41345e4315cf47f64e9e618ca8bdd69c5a55175d /tools/h5dump
parentdcb74e8adbd572a5e0c5737ae9106083de8c11b7 (diff)
downloadhdf5-1df6377a96f8f0ad0319c8aaeefb8ffe2a3e8506.zip
hdf5-1df6377a96f8f0ad0319c8aaeefb8ffe2a3e8506.tar.gz
hdf5-1df6377a96f8f0ad0319c8aaeefb8ffe2a3e8506.tar.bz2
[svn-r13947] 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 0aa17ed..73a9f34 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -1417,7 +1417,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;