aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/dive.c7
-rw-r--r--core/dive.h2
2 files changed, 4 insertions, 5 deletions
diff --git a/core/dive.c b/core/dive.c
index 2b3b7ef62..5ddaded9e 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -4189,11 +4189,10 @@ struct dive *make_first_dc(const struct dive *d, int dc_number)
return res;
}
-/* always acts on the current dive */
-unsigned int count_divecomputers(void)
+int count_divecomputers(const struct dive *d)
{
int ret = 1;
- struct divecomputer *dc = current_dive->dc.next;
+ struct divecomputer *dc = d->dc.next;
while (dc) {
ret++;
dc = dc->next;
@@ -4229,7 +4228,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())
+ if (d == current_dive && dc_number >= count_divecomputers(d))
dc_number--;
invalidate_dive_cache(d);
}
diff --git a/core/dive.h b/core/dive.h
index 5efb24cca..2998ae9d6 100644
--- a/core/dive.h
+++ b/core/dive.h
@@ -435,7 +435,7 @@ extern struct divecomputer *get_dive_dc(struct dive *dive, int nr);
extern timestamp_t dive_endtime(const struct dive *dive);
extern struct dive *make_first_dc(const struct dive *d, int dc_number);
-extern unsigned int count_divecomputers(void);
+extern int count_divecomputers(const struct dive *d);
extern struct dive *clone_delete_divecomputer(const struct dive *d, int dc_number);
void split_divecomputer(const struct dive *src, int num, struct dive **out1, struct dive **out2);