summaryrefslogtreecommitdiffstats
path: root/src/H5FDros3.c
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2023-07-18 15:35:05 (GMT)
committerGitHub <noreply@github.com>2023-07-18 15:35:05 (GMT)
commit1903c4b1b0bd227b6713364792d241015b4edb5a (patch)
tree4ec8c69091b59707f28c6cea3ee3a0b158a80b73 /src/H5FDros3.c
parentaab497a6312a9d8434a7dc7b5a593713fc8fbce0 (diff)
downloadhdf5-1903c4b1b0bd227b6713364792d241015b4edb5a.zip
hdf5-1903c4b1b0bd227b6713364792d241015b4edb5a.tar.gz
hdf5-1903c4b1b0bd227b6713364792d241015b4edb5a.tar.bz2
Fixed more warnings about extra semicolons (#3249)
* Require semi-colon after H5_CHECK_OVERFLOW calls Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5FDros3.c')
-rw-r--r--src/H5FDros3.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/H5FDros3.c b/src/H5FDros3.c
index be35abc..098ac29 100644
--- a/src/H5FDros3.c
+++ b/src/H5FDros3.c
@@ -1399,71 +1399,71 @@ H5FD__ros3_cmp(const H5FD_t *_f1, const H5FD_t *_f2)
/* URL: SCHEME */
if (HDstrcmp(purl1->scheme, purl2->scheme))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* URL: HOST */
if (HDstrcmp(purl1->host, purl2->host))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* URL: PORT */
if (purl1->port && purl2->port) {
if (HDstrcmp(purl1->port, purl2->port))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
}
else if (purl1->port)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
else if (purl2->port)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* URL: PATH */
if (purl1->path && purl2->path) {
if (HDstrcmp(purl1->path, purl2->path))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
}
else if (purl1->path && !purl2->path)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
else if (purl2->path && !purl1->path)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* URL: QUERY */
if (purl1->query && purl2->query) {
if (HDstrcmp(purl1->query, purl2->query))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
}
else if (purl1->query && !purl2->query)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
else if (purl2->query && !purl1->query)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* FAPL: AWS_REGION */
if (f1->fa.aws_region[0] != '\0' && f2->fa.aws_region[0] != '\0') {
if (HDstrcmp(f1->fa.aws_region, f2->fa.aws_region))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
}
else if (f1->fa.aws_region[0] != '\0')
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
else if (f2->fa.aws_region[0] != '\0')
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* FAPL: SECRET_ID */
if (f1->fa.secret_id[0] != '\0' && f2->fa.secret_id[0] != '\0') {
if (HDstrcmp(f1->fa.secret_id, f2->fa.secret_id))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
}
else if (f1->fa.secret_id[0] != '\0')
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
else if (f2->fa.secret_id[0] != '\0')
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
/* FAPL: SECRET_KEY */
if (f1->fa.secret_key[0] != '\0' && f2->fa.secret_key[0] != '\0') {
if (HDstrcmp(f1->fa.secret_key, f2->fa.secret_key))
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
}
else if (f1->fa.secret_key[0] != '\0')
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
else if (f2->fa.secret_key[0] != '\0')
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
done:
FUNC_LEAVE_NOAPI(ret_value)