summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/prime.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples/prime.c')
-rw-r--r--misc/examples/prime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/prime.c b/misc/examples/prime.c
index c3db707d..e7b3d993 100644
--- a/misc/examples/prime.c
+++ b/misc/examples/prime.c
@@ -32,7 +32,7 @@ int main(void)
llong n = 100000000;
printf("Computing prime numbers up to %lld\n", n);
- clock_t t = clock();
+ clock_t t1 = clock();
cbits primes = sieveOfEratosthenes(n + 1);
llong np = cbits_count(&primes);