diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-03-30 18:24:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-03-30 18:24:03 (GMT) |
commit | a5df827912b1f0d274ea2df6d90cabd0989bf4f8 (patch) | |
tree | 2ab4db3d40ef1984e98e522dd45ee569d64acb1b | |
parent | f8fa1029b7e056cc068583d5f08d788aa57e3635 (diff) | |
download | hdf5-a5df827912b1f0d274ea2df6d90cabd0989bf4f8.zip hdf5-a5df827912b1f0d274ea2df6d90cabd0989bf4f8.tar.gz hdf5-a5df827912b1f0d274ea2df6d90cabd0989bf4f8.tar.bz2 |
[svn-r16626] Description:
Fix missing parameters to updated H5C_get_entry_status() call.
Tested on:
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
-rw-r--r-- | src/H5AC.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4430,7 +4430,7 @@ H5AC_log_renamed_entry(H5AC_t * cache_ptr, /* get entry status, size, etc here */ if ( H5C_get_entry_status(cache_ptr, old_addr, &entry_size, &entry_in_cache, - &entry_dirty, NULL, NULL) < 0 ) { + &entry_dirty, NULL, NULL, NULL, NULL) < 0 ) { HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, "Can't get entry status.") |