From 5500c59b9be9f7f32e8b3d0d9b5fa775e50fbe98 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 2 Nov 2006 12:27:17 -0800 Subject: [PATCH] Remove typo (mean vs median) This didn't end up making a difference in practice since the median is assigned again later on. --- perf/cairo-perf.c | 1 - 1 file changed, 1 deletion(-) 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;