summaryrefslogtreecommitdiffstats
path: root/test/tgenprop.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-08-03 18:30:34 (GMT)
committerGitHub <noreply@github.com>2023-08-03 18:30:34 (GMT)
commit27b2d6735cbc326dbfa3f8e0a07ca7ba82ffe253 (patch)
tree1ece8273bcfba450d48d1c848ea2ec3aad017d83 /test/tgenprop.c
parent7fc8531b767855e69fb4016783a1131ba581fd5b (diff)
downloadhdf5-27b2d6735cbc326dbfa3f8e0a07ca7ba82ffe253.zip
hdf5-27b2d6735cbc326dbfa3f8e0a07ca7ba82ffe253.tar.gz
hdf5-27b2d6735cbc326dbfa3f8e0a07ca7ba82ffe253.tar.bz2
Merge Fixes the last of the -Wextra-semi-stmt warnings #3326 (#3338)
Diffstat (limited to 'test/tgenprop.c')
-rw-r--r--test/tgenprop.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/tgenprop.c b/test/tgenprop.c
index c542603..b4bd6c3 100644
--- a/test/tgenprop.c
+++ b/test/tgenprop.c
@@ -199,7 +199,7 @@ test_genprop_basic_class_prop(void)
ret = H5Pregister2(cid1, PROP1_NAME, PROP1_SIZE, PROP1_DEF_VALUE, NULL, NULL, NULL, NULL, NULL, NULL,
NULL);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Pregister2");
/* Check the existence of the first property */
@@ -227,7 +227,7 @@ test_genprop_basic_class_prop(void)
ret = H5Pregister2(cid1, PROP2_NAME, PROP2_SIZE, PROP2_DEF_VALUE, NULL, NULL, NULL, NULL, NULL, NULL,
NULL);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Pregister2");
/* Check the existence of the second property */
@@ -272,7 +272,7 @@ test_genprop_basic_class_prop(void)
{
ret = H5Pget_size(cid1, PROP1_NAME, &size);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Pget_size");
/* Check the number of properties in class */
@@ -1966,7 +1966,7 @@ test_genprop_deprec_class(void)
{
ret = H5Pregister1(cid1, PROP1_NAME, PROP1_SIZE, PROP1_DEF_VALUE, NULL, NULL, NULL, NULL, NULL, NULL);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Pregister1");
/* Check the existence of the first property */
@@ -1992,7 +1992,7 @@ test_genprop_deprec_class(void)
{
ret = H5Pregister1(cid1, PROP2_NAME, PROP2_SIZE, PROP2_DEF_VALUE, NULL, NULL, NULL, NULL, NULL, NULL);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Pregister1");
/* Check the existence of the second property */
@@ -2036,7 +2036,7 @@ test_genprop_deprec_class(void)
{
ret = H5Pget_size(cid1, PROP1_NAME, &size);
}
- H5E_END_TRY;
+ H5E_END_TRY
VERIFY(ret, FAIL, "H5Pget_size");
/* Check the number of properties in class */
@@ -2194,5 +2194,5 @@ cleanup_genprop(void)
{
H5Fdelete(FILENAME, H5P_DEFAULT);
}
- H5E_END_TRY;
+ H5E_END_TRY
}