summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-01-12 16:07:59 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-01-12 16:07:59 (GMT)
commit65c5e3925d10424b15476112ccac1d0704630316 (patch)
tree4a3360e32c6939f3b08fc0b66edec12c18c67224 /src/H5AC.c
parent836f11303ca41edd765e858c5c50c39c6e057e39 (diff)
downloadhdf5-65c5e3925d10424b15476112ccac1d0704630316.zip
hdf5-65c5e3925d10424b15476112ccac1d0704630316.tar.gz
hdf5-65c5e3925d10424b15476112ccac1d0704630316.tar.bz2
[svn-r18105] Description:
Minor brush-clearing changes to converge metadata_journaling branch and trunk. Tested on: Mac OS X/32 10.6.2 (amazon) debug & prod (h5committest not required on this branch)
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index fc4ea4d..59b2e60 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -510,11 +510,11 @@ H5AC_create(const H5F_t *f,
FUNC_ENTER_NOAPI(H5AC_create, FAIL)
- HDassert ( f );
- HDassert ( NULL == f->shared->cache );
- HDassert ( config_ptr != NULL ) ;
- HDassert ( NELMTS(H5AC_entry_type_names) == H5AC_NTYPES);
- HDassert ( H5C__MAX_NUM_TYPE_IDS == H5AC_NTYPES);
+ HDassert(f);
+ HDassert(NULL == f->shared->cache);
+ HDassert(config_ptr != NULL);
+ HDcompile_assert(NELMTS(H5AC_entry_type_names) == H5AC_NTYPES);
+ HDcompile_assert(H5C__MAX_NUM_TYPE_IDS == H5AC_NTYPES);
result = H5AC_validate_config(config_ptr);