summaryrefslogtreecommitdiffstats
path: root/src/H5HLdbg.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-10-12 03:00:46 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-10-12 03:00:46 (GMT)
commit03d4b2aa0ccad8fc985c492e74c4773290f4157c (patch)
tree76d89af743b19cbb528fd1c1a76cd3b667e52e9a /src/H5HLdbg.c
parent8e8aa93d98d3786fa2347f44a7f17c8238714616 (diff)
downloadhdf5-03d4b2aa0ccad8fc985c492e74c4773290f4157c.zip
hdf5-03d4b2aa0ccad8fc985c492e74c4773290f4157c.tar.gz
hdf5-03d4b2aa0ccad8fc985c492e74c4773290f4157c.tar.bz2
[svn-r9403] Purpose:
Code cleanup Description: Further diff reductions against development branch, in preparation for merge of new metadata cache code. Solution: Change 'dirty' field in metadata cache info struct (H5AC_info_t) to match development branch 'is_dirty' name. Platforms tested: FreeBSD 4.10 (sleipnir) w/parallel Solaris 2.7 (arabica) Linux 2.4 (verbena) w/FORTRAN
Diffstat (limited to 'src/H5HLdbg.c')
-rw-r--r--src/H5HLdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HLdbg.c b/src/H5HLdbg.c
index ee5f360..8a81b9f 100644
--- a/src/H5HLdbg.c
+++ b/src/H5HLdbg.c
@@ -77,7 +77,7 @@ H5HL_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE * stream, int indent, int
fprintf(stream, "%*sLocal Heap...\n", indent, "");
fprintf(stream, "%*s%-*s %d\n", indent, "", fwidth,
"Dirty:",
- (int) (h->cache_info.dirty));
+ (int) (h->cache_info.is_dirty));
fprintf(stream, "%*s%-*s %lu\n", indent, "", fwidth,
"Header size (in bytes):",
(unsigned long) H5HL_SIZEOF_HDR(f));