diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-08 17:21:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-08 17:21:43 (GMT) |
commit | 646e232a54d4b0c74cac374f5de50d42cd46a643 (patch) | |
tree | 525a1048b8ee96740f03beb7b027ab909e96c1ba /src/H5O.c | |
parent | 55dbd8d92a0d2d1dd9c56eef89d9e1981dddde22 (diff) | |
download | hdf5-646e232a54d4b0c74cac374f5de50d42cd46a643.zip hdf5-646e232a54d4b0c74cac374f5de50d42cd46a643.tar.gz hdf5-646e232a54d4b0c74cac374f5de50d42cd46a643.tar.bz2 |
[svn-r6832] Purpose:
Code cleanup
Description:
Improve file format debugging output.
Platforms tested:
FreeBSD 4.8 (sleipnir)
Triple check not needed
Diffstat (limited to 'src/H5O.c')
-rw-r--r-- | src/H5O.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3355,14 +3355,14 @@ H5O_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE *stream, int indent, int f } /* message name and size */ - HDfprintf(stream, "%*s%-*s 0x%04x %s(%d)\n", + HDfprintf(stream, "%*s%-*s 0x%04x `%s' (%d)\n", indent + 3, "", MAX(0, fwidth - 3), "Message ID (sequence number):", (unsigned) (oh->mesg[i].type->id), oh->mesg[i].type->name, sequence[oh->mesg[i].type->id]++); HDfprintf (stream, "%*s%-*s %s\n", indent+3, "", MAX (0, fwidth-3), - "Shared message:", + "Shared:", (oh->mesg[i].flags & H5O_FLAG_SHARED) ? "Yes" : "No"); HDfprintf(stream, "%*s%-*s %s\n", indent + 3, "", MAX(0, fwidth - 3), "Constant:", |