summaryrefslogtreecommitdiff
path: root/tune
diff options
context:
space:
mode:
Diffstat (limited to 'tune')
-rw-r--r--tune/tune-gcd-p.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tune/tune-gcd-p.c b/tune/tune-gcd-p.c
index 89ce4c199..3b5a4a8a3 100644
--- a/tune/tune-gcd-p.c
+++ b/tune/tune-gcd-p.c
@@ -204,7 +204,7 @@ main(int argc, char **argv)
if (best_time > lehmer_time)
best_p = 0;
- printf("%6d %6d %5.3g", n, best_p, (double) best_p / n);
+ printf("%6zu %6zu %5.3g", n, best_p, (double) best_p / n);
if (best_p > 0)
{
double speedup = 100 * (lehmer_time - best_time) / lehmer_time;