1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

add omitted semicolon

This commit is contained in:
Jim Meyering
2000-12-25 18:51:58 +00:00
parent fa9603b6d4
commit f46fed1458

View File

@@ -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