From: Jim Meyering Date: Mon, 25 Dec 2000 18:51:58 +0000 (+0000) Subject: add omitted semicolon X-Git-Tag: FILEUTILS-4_0_35~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f46fed14582439e7959f4c7fd8da98e0e1730a63;p=thirdparty%2Fcoreutils.git add omitted semicolon --- 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