diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-29 20:22:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-29 20:22:30 (GMT) |
commit | ad37464819604c9a7fab98ceff91a21e053eda27 (patch) | |
tree | 4ff2e7ab9018e53aabbf1fe3be0ca5825bbaf9c0 /src/H5Cprivate.h | |
parent | 89115b11b0ed2f51c6d80305301a60c7cba8c916 (diff) | |
download | hdf5-ad37464819604c9a7fab98ceff91a21e053eda27.zip hdf5-ad37464819604c9a7fab98ceff91a21e053eda27.tar.gz hdf5-ad37464819604c9a7fab98ceff91a21e053eda27.tar.bz2 |
[svn-r27296] Description:
Correct error with braces around macro (in production builds), also clean
up a few warnings.
Tested on:
MacOSX/64 10.10.3 (amazon) w/serial, parallel & production
Linux/32 2.6 (jam) w/serial & parallel
Diffstat (limited to 'src/H5Cprivate.h')
-rw-r--r-- | src/H5Cprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Cprivate.h b/src/H5Cprivate.h index 57cbc2d..5b152c8 100644 --- a/src/H5Cprivate.h +++ b/src/H5Cprivate.h @@ -1905,8 +1905,8 @@ H5_DLL void H5C_stats__reset(H5C_t *cache_ptr); H5_DLL herr_t H5C_dump_cache(H5C_t *cache_ptr, const char *cache_name); H5_DLL herr_t H5C_unpin_entry(void *thing); H5_DLL herr_t H5C_destroy_flush_dependency(void *parent_thing, void *child_thing); -H5_DLL herr_t H5C_unprotect(H5F_t *f, hid_t dxpl_id, const H5C_class_t *type, - haddr_t addr, void *thing, unsigned int flags); +H5_DLL herr_t H5C_unprotect(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *thing, + unsigned int flags); H5_DLL herr_t H5C_validate_resize_config(H5C_auto_size_ctl_t *config_ptr, unsigned int tests); H5_DLL herr_t H5C_ignore_tags(H5C_t *cache_ptr); |