summaryrefslogtreecommitdiffstats
path: root/test/th5o.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/th5o.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/th5o.c')
-rw-r--r--test/th5o.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/th5o.c b/test/th5o.c
index 027445e..4468bab 100644
--- a/test/th5o.c
+++ b/test/th5o.c
@@ -989,7 +989,7 @@ test_h5o_link(void)
{
ret = H5Pset_libver_bounds(fapl_id, low, high);
}
- H5E_END_TRY;
+ H5E_END_TRY
if (ret < 0) /* Invalid low/high combinations */
continue;
@@ -1180,7 +1180,7 @@ test_h5o_comment(void)
{
ret = H5Oset_comment(dspace, "dataspace comment");
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Oset_comment");
/* Close the file */
@@ -1355,7 +1355,7 @@ test_h5o_comment_by_name(void)
{
ret = H5Oset_comment_by_name(dspace, ".", "dataspace comment", H5P_DEFAULT);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Oset_comment");
/* Close the file */
@@ -1872,5 +1872,5 @@ cleanup_h5o(void)
h5_fixname(TEST_FILENAME, H5P_DEFAULT, filename, sizeof filename);
H5Fdelete(filename, H5P_DEFAULT);
}
- H5E_END_TRY;
+ H5E_END_TRY
}