diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-01-23 22:35:52 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-01-23 22:35:52 (GMT) |
commit | 9a97411a61b886c4f2b5417dce29157a010b47c1 (patch) | |
tree | 8199015a7f6fbbd13627ca79853ec8d2da7bb3ee | |
parent | f3a4e8164f99d733e6804acddfe1b3b0dfe63634 (diff) | |
parent | 6486e06545bf637d46e18a787395542f4fca143a (diff) | |
download | hdf5-9a97411a61b886c4f2b5417dce29157a010b47c1.zip hdf5-9a97411a61b886c4f2b5417dce29157a010b47c1.tar.gz hdf5-9a97411a61b886c4f2b5417dce29157a010b47c1.tar.bz2 |
Merge pull request #2296 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop_minor to develop
* commit '6486e06545bf637d46e18a787395542f4fca143a':
Revert "Moved -Wunsuffixed-float-constants to the developer warnings."
Moved -Wunsuffixed-float-constants to the developer warnings.
Fixed a bug in testpar/t_cache.c concerning checking expected vs. actual cache entry reads and writes.
-rw-r--r-- | testpar/t_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_cache.c b/testpar/t_cache.c index 09d2ecc..954071d 100644 --- a/testpar/t_cache.c +++ b/testpar/t_cache.c @@ -4671,7 +4671,7 @@ verify_entry_reads(haddr_t addr, } } - if ( ! success ) { + if ( success ) { if ( reported_entry_reads != expected_entry_reads ) { @@ -4778,7 +4778,7 @@ verify_entry_writes(haddr_t addr, } } - if ( ! success ) { + if ( success ) { if ( reported_entry_writes != expected_entry_writes ) { |