diff options
author | Quincey Koziol <quincey@koziol.cc> | 2023-05-12 19:52:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 19:52:11 (GMT) |
commit | 0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74 (patch) | |
tree | dd065c47aa9ddd88cbb8a7d86391c0b4d10e1313 /testpar | |
parent | 2a2c2d9ebea6e4a7b5464b54ae412e5dd659eed1 (diff) | |
download | hdf5-0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74.zip hdf5-0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74.tar.gz hdf5-0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74.tar.bz2 |
Move functions into more focused source code modules (#2936)
* Move functions into more focused source code modules, along with a small #
of directly secondary effects. No actual changes to the contents of any
moved routines.
Signed-off-by: Quincey Koziol <quincey@koziol.cc>
* Committing clang-format changes
---------
Signed-off-by: Quincey Koziol <quincey@koziol.cc>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_cache_image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_cache_image.c b/testpar/t_cache_image.c index 1e556d9..86f1696 100644 --- a/testpar/t_cache_image.c +++ b/testpar/t_cache_image.c @@ -1135,10 +1135,10 @@ open_hdf5_file(const hbool_t create_file, const hbool_t mdci_sbem_expected, cons */ if (pass) { - if (H5C_get_cache_image_config(cache_ptr, &image_ctl) < 0) { + if (H5C__get_cache_image_config(cache_ptr, &image_ctl) < 0) { pass = FALSE; - failure_mssg = "error returned by H5C_get_cache_image_config()."; + failure_mssg = "error returned by H5C__get_cache_image_config()."; } } |