diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-08-03 18:30:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 18:30:34 (GMT) |
commit | 27b2d6735cbc326dbfa3f8e0a07ca7ba82ffe253 (patch) | |
tree | 1ece8273bcfba450d48d1c848ea2ec3aad017d83 /test/th5s.c | |
parent | 7fc8531b767855e69fb4016783a1131ba581fd5b (diff) | |
download | hdf5-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/th5s.c')
-rw-r--r-- | test/th5s.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/th5s.c b/test/th5s.c index 87e0de9..6d703da 100644 --- a/test/th5s.c +++ b/test/th5s.c @@ -218,7 +218,7 @@ test_h5s_basic(void) { sid1 = H5Screate_simple(SPACE1_RANK, dims1, NULL); } - H5E_END_TRY; + H5E_END_TRY VERIFY(sid1, FAIL, "H5Screate_simple"); dims1[0] = H5S_UNLIMITED; @@ -229,7 +229,7 @@ test_h5s_basic(void) { ret = H5Sset_extent_simple(sid1, SPACE1_RANK, dims1, NULL); } - H5E_END_TRY; + H5E_END_TRY VERIFY(ret, FAIL, "H5Sset_extent_simple"); ret = H5Sclose(sid1); @@ -3517,5 +3517,5 @@ cleanup_h5s(void) H5Fdelete(ZEROFILE, H5P_DEFAULT); H5Fdelete(VERBFNAME, H5P_DEFAULT); } - H5E_END_TRY; + H5E_END_TRY } |