summaryrefslogtreecommitdiffstats
path: root/core/dive.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/dive.c')
-rw-r--r--core/dive.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/core/dive.c b/core/dive.c
index 2408ba57c..ae468cf1d 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -3535,17 +3535,6 @@ struct dive *make_first_dc(const struct dive *d, int dc_number)
return res;
}
-int count_divecomputers(const struct dive *d)
-{
- int ret = 1;
- struct divecomputer *dc = d->dc.next;
- while (dc) {
- ret++;
- dc = dc->next;
- }
- return ret;
-}
-
static void delete_divecomputer(struct dive *d, int num)
{
int i;
@@ -3574,7 +3563,7 @@ static void delete_divecomputer(struct dive *d, int num)
/* If this is the currently displayed dive, we might have to adjust
* the currently displayed dive computer. */
- if (d == current_dive && dc_number >= count_divecomputers(d))
+ if (d == current_dive && dc_number >= number_of_computers(d))
dc_number--;
invalidate_dive_cache(d);
}