From 55296e9dad8d0449c366ff888510208820c778f0 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 24 Jan 2013 13:08:19 -0800 Subject: [PATCH] Remove unused variable for unit name in statistics calculations The code was incorrect - and completely unnecessary. Signed-off-by: Dirk Hohndel --- statistics.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/statistics.c b/statistics.c index 0cdbf7146..2efc3947a 100644 --- a/statistics.c +++ b/statistics.c @@ -107,7 +107,7 @@ enum { static char * get_time_string(int seconds, int maxdays); -static void process_temperatures(struct dive *dp, stats_t *stats, const char *unit) +static void process_temperatures(struct dive *dp, stats_t *stats) { int min_temp, mean_temp, max_temp = 0; @@ -133,7 +133,7 @@ static void process_temperatures(struct dive *dp, stats_t *stats, const char *un mean_temp = (mean_temp + max_temp) / 2; else mean_temp = max_temp; - stats->combined_temp += get_temp_units(mean_temp, &unit); + stats->combined_temp += get_temp_units(mean_temp, NULL); stats->combined_count++; } } @@ -141,7 +141,6 @@ static void process_temperatures(struct dive *dp, stats_t *stats, const char *un static void process_dive(struct dive *dp, stats_t *stats) { int old_tt, sac_time = 0; - const char *unit; old_tt = stats->total_time.seconds; stats->total_time.seconds += dp->dc.duration.seconds; @@ -154,7 +153,7 @@ static void process_dive(struct dive *dp, stats_t *stats) if (stats->min_depth.mm == 0 || dp->dc.maxdepth.mm < stats->min_depth.mm) stats->min_depth.mm = dp->dc.maxdepth.mm; - process_temperatures(dp, stats, unit); + process_temperatures(dp, stats); /* Maybe we should drop zero-duration dives */ if (!dp->dc.duration.seconds)