diff options
author | Carl Worth <cworth@cworth.org> | 2006-11-02 12:27:17 -0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-11-02 12:27:17 -0800 |
commit | 5500c59b9be9f7f32e8b3d0d9b5fa775e50fbe98 (patch) | |
tree | c4019d079aaffb26403088c5af20f9973e554fb1 /perf/cairo-perf.c | |
parent | b717e987776d60cbc37434f7c918ad438e29b1a4 (diff) | |
download | cairo-5500c59b9be9f7f32e8b3d0d9b5fa775e50fbe98.tar.gz |
Remove typo (mean vs median)
This didn't end up making a difference in practice since the
median is assigned again later on.
Diffstat (limited to 'perf/cairo-perf.c')
-rw-r--r-- | perf/cairo-perf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perf/cairo-perf.c b/perf/cairo-perf.c index 412ce82c7..91f8e688d 100644 --- a/perf/cairo-perf.c +++ b/perf/cairo-perf.c @@ -142,7 +142,6 @@ _compute_stats (cairo_perf_ticks_t *values, int num_values, stats_t *stats) sizeof (cairo_perf_ticks_t), compare_cairo_perf_ticks); q1 = values[(1*num_values)/4]; - stats->mean = values[(2*num_values)/4]; q3 = values[(3*num_values)/4]; iqr = q3 - q1; |