diff options
author | Quincey Koziol <koziol@lbl.gov> | 2017-02-28 16:43:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2017-02-28 16:43:38 (GMT) |
commit | a49bd13da3feed72cc4e2650d71a224d0cbaad73 (patch) | |
tree | f0b7da5910d5ce1525b9bf0a536042a8d425c4c6 /test | |
parent | dfad2e1b079ca690ea144ff4a0fa006ea05ede3e (diff) | |
parent | cf932610999de00867c0a0bb3a08ee3bbf39a158 (diff) | |
download | hdf5-a49bd13da3feed72cc4e2650d71a224d0cbaad73.zip hdf5-a49bd13da3feed72cc4e2650d71a224d0cbaad73.tar.gz hdf5-a49bd13da3feed72cc4e2650d71a224d0cbaad73.tar.bz2 |
Merge pull request #316 in HDFFV/hdf5 from merge_page_buffering_05 to develop
* commit 'cf932610999de00867c0a0bb3a08ee3bbf39a158':
Correct issues from pull request reviews.
Corrected version of 4b5e05c084f93c35dae946c2c9e814d565a613b0: Fix some more signed -> unsigned value issues with cache data structures, also misc. style cleanups. All to align w/incoming page_buffering changes.
Revert "Fix some more signed -> unsigned value issues with cache data structures, also"
Diffstat (limited to 'test')
-rw-r--r-- | test/cache_api.c | 2 | ||||
-rw-r--r-- | test/links.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/cache_api.c b/test/cache_api.c index 6c43796..710e38f 100644 --- a/test/cache_api.c +++ b/test/cache_api.c @@ -2314,7 +2314,7 @@ main(void) nerrs += 1; } - if(invalid_configs ) + if(invalid_configs) HDfree(invalid_configs); if(nerrs > 0) diff --git a/test/links.c b/test/links.c index 3364c7e..3aff68b 100644 --- a/test/links.c +++ b/test/links.c @@ -22,7 +22,7 @@ /* * This file needs to access private information from the H5FD package. - * This file also needs to access the file driver testing code. + * This file also needs to access the group testing code. */ #define H5FD_FRIEND /*suppress error about including H5FDpkg */ #define H5FD_TESTING |