summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.c b/lib/hash.c
index 63af151a24..a94a5495a1 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -423,7 +423,7 @@ is_prime (unsigned long candidate)
divisor++;
}
- return (candidate % divisor ? true : false)
+ return (candidate % divisor ? true : false);
}
/* Round a given CANDIDATE number up to the nearest prime, and return that