summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.c
diff options
context:
space:
mode:
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 */