diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-17 14:58:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-17 14:58:38 (GMT) |
commit | fb4be743d3b3fdc3fa77b879e59f966a120568b7 (patch) | |
tree | 5bf6940c919867af43b55a7d9643c77d5e6fdcc2 /src/H5AC.c | |
parent | 65edf41cc786dce3ec77e897040ca01db4317011 (diff) | |
download | hdf5-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 /* |