summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-02-17 14:58:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-02-17 14:58:38 (GMT)
commitfb4be743d3b3fdc3fa77b879e59f966a120568b7 (patch)
tree5bf6940c919867af43b55a7d9643c77d5e6fdcc2 /src/H5AC.c
parent65edf41cc786dce3ec77e897040ca01db4317011 (diff)
downloadhdf5-fb4be743d3b3fdc3fa77b879e59f966a120568b7.zip
hdf5-fb4be743d3b3fdc3fa77b879e59f966a120568b7.tar.gz
hdf5-fb4be743d3b3fdc3fa77b879e59f966a120568b7.tar.bz2
[svn-r6410] Purpose:
Bug fix. Description: Correct compile errors when configured with --enable-debug=all. Platforms tested: FreeBSD 4.7 (sleipnir) serial & parallel
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 67b88c6..ec7c525 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -1431,12 +1431,12 @@ H5AC_protect(H5F_t *f, hid_t dxpl_id, const H5AC_class_t *type, haddr_t addr,
* The object is already cached; simply remove it from the cache.
*/
thing = (*info);
- (*info)->type = NULL;
- (*info)->addr = HADDR_UNDEF;
- (*info)= NULL;
#ifdef H5AC_DEBUG
cache->diagnostics[(*info)->type->id].nhits++;
#endif /* H5AC_DEBUG */
+ (*info)->type = NULL;
+ (*info)->addr = HADDR_UNDEF;
+ (*info)= NULL;
} else {
#ifdef H5AC_DEBUG
/*