summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.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/H5FDcore.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/H5FDcore.c')
-rw-r--r--src/H5FDcore.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index 0e07350..9c2f1a4 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -1034,57 +1034,57 @@ H5FD__core_cmp(const H5FD_t *_f1, const H5FD_t *_f2)
/* Compare low level file information for backing store */
#ifdef H5_HAVE_WIN32_API
if (f1->dwVolumeSerialNumber < f2->dwVolumeSerialNumber)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->dwVolumeSerialNumber > f2->dwVolumeSerialNumber)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
if (f1->nFileIndexHigh < f2->nFileIndexHigh)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->nFileIndexHigh > f2->nFileIndexHigh)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
if (f1->nFileIndexLow < f2->nFileIndexLow)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->nFileIndexLow > f2->nFileIndexLow)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
#else
#ifdef H5_DEV_T_IS_SCALAR
if (f1->device < f2->device)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->device > f2->device)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
#else /* H5_DEV_T_IS_SCALAR */
/* If dev_t isn't a scalar value on this system, just use memcmp to
* determine if the values are the same or not. The actual return value
* shouldn't really matter...
*/
if (memcmp(&(f1->device), &(f2->device), sizeof(dev_t)) < 0)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (memcmp(&(f1->device), &(f2->device), sizeof(dev_t)) > 0)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
#endif /* H5_DEV_T_IS_SCALAR */
if (f1->inode < f2->inode)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->inode > f2->inode)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
#endif /*H5_HAVE_WIN32_API*/
} /* end if */
else {
if (NULL == f1->name && NULL == f2->name) {
if (f1 < f2)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1 > f2)
- HGOTO_DONE(1)
- HGOTO_DONE(0)
+ HGOTO_DONE(1);
+ HGOTO_DONE(0);
} /* end if */
if (NULL == f1->name)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (NULL == f2->name)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
ret_value = HDstrcmp(f1->name, f2->name);
} /* end else */