diff options
author | Jim Meyering <jim@meyering.net> | 2000-12-25 18:51:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-12-25 18:51:58 +0000 |
commit | f46fed14582439e7959f4c7fd8da98e0e1730a63 (patch) | |
tree | 06496bd2932eea9afd914a61820a1018f62f0928 | |
parent | fa9603b6d40ca9863ed64e02d67a3dc7b2c9ab66 (diff) | |
download | coreutils-f46fed14582439e7959f4c7fd8da98e0e1730a63.tar.xz |
add omitted semicolon
-rw-r--r-- | lib/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.c b/lib/hash.c index 63af151a2..a94a5495a 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 |