diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-12-17 09:12:08 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-17 10:25:01 -0800 |
commit | 6b80b41c7cc8b56ea70447dc4dfaf250fa6f4743 (patch) | |
tree | b25431c0cbb694695b69feaee5f0c5fafd22586c /core/statistics.c | |
parent | 648fec7a3d0b65afdc95c71a638d0f792b93adf2 (diff) | |
download | subsurface-6b80b41c7cc8b56ea70447dc4dfaf250fa6f4743.tar.gz |
Cleanup: durations are now signed
Somehow a whitespace fix snuck in here. Oops.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/statistics.c')
-rw-r--r-- | core/statistics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/statistics.c b/core/statistics.c index d2a8d8ae2..13bcc4a97 100644 --- a/core/statistics.c +++ b/core/statistics.c @@ -48,7 +48,7 @@ static void process_temperatures(struct dive *dp, stats_t *stats) static void process_dive(struct dive *dp, stats_t *stats) { int old_tadt, sac_time = 0; - uint32_t duration = dp->duration.seconds; + int32_t duration = dp->duration.seconds; old_tadt = stats->total_average_depth_time.seconds; stats->total_time.seconds += duration; |