add omitted semicolon
authorJim Meyering <jim@meyering.net>
Mon, 25 Dec 2000 18:51:58 +0000 (18:51 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 25 Dec 2000 18:51:58 +0000 (18:51 +0000)
lib/hash.c

index 63af151a242b12195ffd0bf4a09d3cbee8db7f73..a94a5495a1e6169271286568bd7908aed9dfafa4 100644 (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