diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-05-14 00:32:45 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-05-20 11:51:40 +0900 |
commit | 05d9cc409c7ddffcd981c0dafaf67ba6935cc0ba (patch) | |
tree | 99fd8e916a1aedcee8bcfa224cc51597515f3837 /statistics.c | |
parent | 91c20357f510fe7ea1c5740eb476fd718e41259c (diff) | |
download | subsurface-05d9cc409c7ddffcd981c0dafaf67ba6935cc0ba.tar.gz |
Migrate code to for_each_dive and for_each_dc
[Dirk Hohndel: this overlapped with my commit 09e7c61feeea ("Consistently
use for_each_dive (and use it correctly)") so I took the
pieces that I had missed]
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'statistics.c')
-rw-r--r-- | statistics.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/statistics.c b/statistics.c index feb812766..71150159c 100644 --- a/statistics.c +++ b/statistics.c @@ -294,12 +294,12 @@ void get_selected_dives_text(char *buffer, int size) static bool is_gas_used(struct dive *dive, int idx) { - struct divecomputer *dc = &dive->dc; + struct divecomputer *dc; bool firstGasExplicit = false; if (cylinder_none(&dive->cylinder[idx])) return false; - while (dc) { + for_each_dc(dive, dc) { struct event *event = get_next_event(dc->events, "gaschange"); while (event) { if (event->time.seconds < 30) @@ -308,7 +308,6 @@ static bool is_gas_used(struct dive *dive, int idx) return true; event = get_next_event(event->next, "gaschange"); } - dc = dc->next; } if (idx == 0 && !firstGasExplicit) return true; |