summaryrefslogtreecommitdiffstats
path: root/src/H5FDdirect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDdirect.c')
-rw-r--r--src/H5FDdirect.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c
index cdb0c5d..d3332c8 100644
--- a/src/H5FDdirect.c
+++ b/src/H5FDdirect.c
@@ -635,36 +635,36 @@ H5FD__direct_cmp(const H5FD_t *_f1, const H5FD_t *_f2)
#ifdef H5_HAVE_WIN32_API
if (f1->fileindexhi < f2->fileindexhi)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->fileindexhi > f2->fileindexhi)
- HGOTO_DONE(1)
+ HGOTO_DONE(1);
if (f1->fileindexlo < f2->fileindexlo)
- HGOTO_DONE(-1)
+ HGOTO_DONE(-1);
if (f1->fileindexlo > f2->fileindexlo)
- 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