summaryrefslogtreecommitdiffstats
path: root/test/cache_image.c
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2023-06-16 04:49:02 (GMT)
committerGitHub <noreply@github.com>2023-06-16 04:49:02 (GMT)
commit68eba3da69e659fab69bbef5901ce42e82cea1dc (patch)
treef36805f798df6c04092c14dc6803d2cb82f6eff2 /test/cache_image.c
parent10093f7c4345061bdbebc12888debbf08fe85a5b (diff)
downloadhdf5-68eba3da69e659fab69bbef5901ce42e82cea1dc.zip
hdf5-68eba3da69e659fab69bbef5901ce42e82cea1dc.tar.gz
hdf5-68eba3da69e659fab69bbef5901ce42e82cea1dc.tar.bz2
Many clang -Wextra-semi-stmt fixes (#2537)
* Adds semicolons to function-like macros * Adds a do..while(0) loop to some macros * Removes semicolons when inappropriate, especially H5E_TRY_BEGIN/END
Diffstat (limited to 'test/cache_image.c')
-rw-r--r--test/cache_image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cache_image.c b/test/cache_image.c
index 8ee152c..8072eda 100644
--- a/test/cache_image.c
+++ b/test/cache_image.c
@@ -935,7 +935,7 @@ attempt_swmr_open_hdf5_file(const hbool_t create_file, const hbool_t set_mdci_fa
{
file_id = H5Fcreate(hdf_file_name, H5F_ACC_TRUNC | H5F_ACC_SWMR_WRITE, H5P_DEFAULT, fapl_id);
}
- H5E_END_TRY;
+ H5E_END_TRY
}
else {
@@ -943,7 +943,7 @@ attempt_swmr_open_hdf5_file(const hbool_t create_file, const hbool_t set_mdci_fa
{
file_id = H5Fopen(hdf_file_name, H5F_ACC_RDWR | H5F_ACC_SWMR_WRITE, fapl_id);
}
- H5E_END_TRY;
+ H5E_END_TRY
}
if (file_id >= 0) {
@@ -6284,7 +6284,7 @@ cache_image_api_error_check_3(hbool_t single_file_vfd)
failure_mssg = "SWMR start succeeded in file with cache image.";
}
}
- H5E_END_TRY;
+ H5E_END_TRY
}
if (show_progress)