summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-10-07 16:01:22 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-10-07 16:01:22 (GMT)
commit67b81597fd76246104c9035c24e58f56e1be43ca (patch)
treeeff19f345b89777c85be06f99415d922bb66ff12 /tools
parentbb9f192ca8a62ee2f41ca297a97ddae3962a1ca6 (diff)
downloadhdf5-67b81597fd76246104c9035c24e58f56e1be43ca.zip
hdf5-67b81597fd76246104c9035c24e58f56e1be43ca.tar.gz
hdf5-67b81597fd76246104c9035c24e58f56e1be43ca.tar.bz2
[svn-r9380] Purpose: bug fix
Description: In last checkin, for a function call lookup_ref_path(refbuf) on line 5039 was accidentally changed to lookup_ref_path(*refbuf). Solution: changed it back. Platforms tested: no test needed for such a simple change.
Diffstat (limited to 'tools')
-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 6cab57d..4f88223 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -5036,7 +5036,7 @@ xml_print_refs(hid_t did, int source)
ssiz = H5Sget_simple_extent_npoints(space);
for (i = 0; i < ssiz; i++) {
- path = lookup_ref_path(*refbuf);
+ path = lookup_ref_path(refbuf);
indentation(indent + COL);
if (!path) {