From 460aa4c1bdee64f25e1c846ac9a6182e4e8e9820 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 7 Nov 2013 17:25:42 +0900 Subject: Include the cylinder information in a dive added with "Add Dive" We only copied the samples, but not the related cylinder data. Signed-off-by: Dirk Hohndel --- dive.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'dive.c') diff --git a/dive.c b/dive.c index 4bf5f2742..030dfa410 100644 --- a/dive.c +++ b/dive.c @@ -195,7 +195,16 @@ struct dive *alloc_dive(void) return dive; } -void copy_samples(struct dive* s, struct dive* d) +void copy_cylinders(struct dive *s, struct dive *d) +{ + int i; + if (!s || !d) + return; + for (i = 0; i < MAX_CYLINDERS; i++) + d->cylinder[i] = s->cylinder[i]; +} + +void copy_samples(struct dive *s, struct dive *d) { /* instead of carefully copying them one by one and calling add_sample * over and over again, let's just copy the whole blob */ -- cgit v1.2.3-70-g09d2