diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-09 16:02:51 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-09 16:02:51 (GMT) |
commit | fe79f2ac3468eec480b4369e58cc316c39f88388 (patch) | |
tree | 6d448586a447d2e2fb5e5b1f3cbebc7afb069b35 | |
parent | a0d8980758ef970fe02e072dcc56e8f77455caf9 (diff) | |
download | hdf5-fe79f2ac3468eec480b4369e58cc316c39f88388.zip hdf5-fe79f2ac3468eec480b4369e58cc316c39f88388.tar.gz hdf5-fe79f2ac3468eec480b4369e58cc316c39f88388.tar.bz2 |
[svn-r1457]
fixed the unnamed data type bug(wasn't printing the root slash)
-rw-r--r-- | tools/h5dump.c | 2 |
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); |