summaryrefslogtreecommitdiffstats
path: root/test/vol_plugin.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/vol_plugin.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/vol_plugin.c')
-rw-r--r--test/vol_plugin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/vol_plugin.c b/test/vol_plugin.c
index c7baf5a..4b8d263 100644
--- a/test/vol_plugin.c
+++ b/test/vol_plugin.c
@@ -75,7 +75,7 @@ error:
{
H5VLunregister_connector(vol_id);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FAIL;
} /* end test_registration_by_value() */
@@ -132,7 +132,7 @@ error:
{
H5VLunregister_connector(vol_id);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FAIL;
} /* end test_registration_by_name() */
@@ -237,7 +237,7 @@ error:
for (i = 0; i < N_REGISTRATIONS; i++)
H5VLunregister_connector(vol_ids[i]);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FAIL;
} /* end test_multiple_registration() */
@@ -313,7 +313,7 @@ error:
H5VLclose(vol_id_out);
H5VLunregister_connector(vol_id);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FAIL;
} /* end test_getters() */