summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-07-09 16:02:51 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-07-09 16:02:51 (GMT)
commitfe79f2ac3468eec480b4369e58cc316c39f88388 (patch)
tree6d448586a447d2e2fb5e5b1f3cbebc7afb069b35 /tools
parenta0d8980758ef970fe02e072dcc56e8f77455caf9 (diff)
downloadhdf5-fe79f2ac3468eec480b4369e58cc316c39f88388.zip
hdf5-fe79f2ac3468eec480b4369e58cc316c39f88388.tar.gz
hdf5-fe79f2ac3468eec480b4369e58cc316c39f88388.tar.bz2
[svn-r1457]
fixed the unnamed data type bug(wasn't printing the root slash)
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c
index f288db9..c8e7fc5 100644
--- a/tools/h5dump.c
+++ b/tools/h5dump.c
@@ -280,7 +280,7 @@ H5G_stat_t statbuf;
indentation (indent+COL);
if (i >= 0) {
if (!type_table.objs[i].recorded) /* unamed data type */
- printf("\"#%lu:%lu\"\n", type_table.objs[i].objno[0],
+ printf("\"/#%lu:%lu\"\n", type_table.objs[i].objno[0],
type_table.objs[i].objno[1]);
else
printf("\"%s\"\n", type_table.objs[i].objname);