summaryrefslogtreecommitdiffstats
path: root/src/H5HGdbg.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/H5HGdbg.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/H5HGdbg.c')
-rw-r--r--src/H5HGdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HGdbg.c b/src/H5HGdbg.c
index a16dabb..bb01709 100644
--- a/src/H5HGdbg.c
+++ b/src/H5HGdbg.c
@@ -79,7 +79,7 @@ H5HG_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE *stream, int indent,
fprintf(stream, "%*sGlobal Heap Collection...\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,
"Total collection size in file:",
(unsigned long)(h->size));