diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 02:00:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 02:00:48 (GMT) |
commit | 48f022a701da0912a4776a3d9d24a102dd562b5f (patch) | |
tree | 4c5d95985266db25e3c6c7ff9128059114698721 /src/H5Fdbg.c | |
parent | 429cecd2827e09ad9800b25557774e31d19b750f (diff) | |
download | hdf5-48f022a701da0912a4776a3d9d24a102dd562b5f.zip hdf5-48f022a701da0912a4776a3d9d24a102dd562b5f.tar.gz hdf5-48f022a701da0912a4776a3d9d24a102dd562b5f.tar.bz2 |
[svn-r13495] Description:
Cleanup handling of file consistency/status flags a bit.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Fdbg.c')
-rw-r--r-- | src/H5Fdbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fdbg.c b/src/H5Fdbg.c index c3d1ea7..1651004 100644 --- a/src/H5Fdbg.c +++ b/src/H5Fdbg.c @@ -106,7 +106,7 @@ H5F_debug(H5F_t *f, hid_t dxpl_id, FILE * stream, int indent, int fwidth) HDfprintf(stream, "%*s%-*s %u\n", indent, "", fwidth, "Symbol table internal node 1/2 rank:", f->shared->btree_k[H5B_SNODE_ID]); HDfprintf(stream, "%*s%-*s 0x%02x\n", indent, "", fwidth, - "File consistency flags:", (unsigned)(f->shared->consist_flags)); + "File status flags:", (unsigned)(f->shared->status_flags)); HDfprintf(stream, "%*s%-*s %a (abs)\n", indent, "", fwidth, "Base address:", f->shared->base_addr); HDfprintf(stream, "%*s%-*s %a (rel)\n", indent, "", fwidth, |