diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-01-10 14:59:49 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-01-10 14:59:49 (GMT) |
commit | 7b9871bfa22bfde7dd524c3677416093e7425989 (patch) | |
tree | 403e9953d59e43569599b08bbc5ba0318aab53b6 /test | |
parent | 52d3f187a5f2db393f79fa2d18d54ca61d9561a2 (diff) | |
download | hdf5-7b9871bfa22bfde7dd524c3677416093e7425989.zip hdf5-7b9871bfa22bfde7dd524c3677416093e7425989.tar.gz hdf5-7b9871bfa22bfde7dd524c3677416093e7425989.tar.bz2 |
[svn-r16293] Purpose:
Bug Fix
Description:
Removed problematic debugging statement and switched one remaining TRUE
verbose statement to FALSE in cache_common.c
Tested:
jam, liberty
Diffstat (limited to 'test')
-rw-r--r-- | test/cache_common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/cache_common.c b/test/cache_common.c index b76e9f9..39131bf 100644 --- a/test/cache_common.c +++ b/test/cache_common.c @@ -2341,7 +2341,7 @@ flush_cache(H5C_t * cache_ptr, { const char * fcn_name = "flush_cache()"; herr_t result = 0; - hbool_t verbose = TRUE; + hbool_t verbose = FALSE; HDassert(cache_ptr); @@ -3312,7 +3312,6 @@ unprotect_entry_with_size_change(H5C_t * cache_ptr, if ( result < 0 ) { HDfprintf(stdout, "%s: H5C_unprotect() failed.\n", fcn_name); - H5Eprint(H5E_DEFAULT, stdout); } if ( entry_ptr->header.is_protected ) { |