diff options
Diffstat (limited to 'core/dive.c')
-rw-r--r-- | core/dive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dive.c b/core/dive.c index b405d7402..f3d5981c9 100644 --- a/core/dive.c +++ b/core/dive.c @@ -2720,7 +2720,7 @@ static int likely_same_dive(struct dive *a, struct dive *b) if (fuzz < 60) fuzz = 60; - return ((a->when <= b->when + fuzz) && (a->when >= b->when - fuzz)); + return (a->when <= b->when + fuzz) && (a->when >= b->when - fuzz); } /* |