summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-12-28 18:54:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-12-28 18:54:34 (GMT)
commit9961fb12777f245340941d14493809ef3c9348c5 (patch)
tree8d03cd7f002c5017ddb667f52abaf34710904727 /src/H5O.c
parent9d8f04ded1e821c6b8b1cff8e98405a009c223c6 (diff)
downloadhdf5-9961fb12777f245340941d14493809ef3c9348c5.zip
hdf5-9961fb12777f245340941d14493809ef3c9348c5.tar.gz
hdf5-9961fb12777f245340941d14493809ef3c9348c5.tar.bz2
[svn-r3209] Purpose:
Updating debugging information for new features, etc. Description: Lots of the new features added to the library during the last year or so have been added without updating the debugging routines used by h5debug. Solution: Added more of the new features (although not all of them) to the debugging routines for h5debug. Also included some more information to expand on the information printed from h5debug. Platforms tested: FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 41cc4a4..9d3629f 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -2169,6 +2169,9 @@ H5O_debug(H5F_t *f, haddr_t addr, FILE *stream, intn indent, intn fwidth)
HDfprintf(stream, "%*s%-*s %d\n", indent, "", fwidth,
"Version:",
(int) (oh->version));
+ HDfprintf(stream, "%*s%-*s %u\n", indent, "", fwidth,
+ "Header size (in bytes):",
+ (unsigned) H5O_SIZEOF_HDR(f));
HDfprintf(stream, "%*s%-*s %d\n", indent, "", fwidth,
"Number of links:",
(int) (oh->nlink));