You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
917 B
20 lines
917 B
--- a/support/ab.c 2014/08/14 12:12:38 1617912 |
|
+++ b/support/ab.c 2014/08/14 12:15:31 1617913 |
|
@@ -1029,7 +1029,7 @@ |
|
ap_round_ms(stats[done - 1].time)); |
|
else |
|
printf(" %d%% %5" APR_TIME_T_FMT "\n", percs[i], |
|
- ap_round_ms(stats[(int) (done * percs[i] / 100)].time)); |
|
+ ap_round_ms(stats[(unsigned long)done * percs[i] / 100].time)); |
|
} |
|
} |
|
if (csvperc) { |
|
@@ -1046,7 +1046,7 @@ |
|
else if (i == 100) |
|
t = ap_double_ms(stats[done - 1].time); |
|
else |
|
- t = ap_double_ms(stats[(int) (0.5 + done * i / 100.0)].time); |
|
+ t = ap_double_ms(stats[(unsigned long) (0.5 + (double)done * i / 100.0)].time); |
|
fprintf(out, "%d,%.3f\n", i, t); |
|
} |
|
fclose(out);
|
|
|