]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Merge latitude and longitude data properly
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 23 Sep 2011 03:50:07 +0000 (20:50 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 23 Sep 2011 03:50:07 +0000 (20:50 -0700)
When merging two identical dives and one of them has lat/long data, pick
it up correctly for the merged dive.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
dive.c

diff --git a/dive.c b/dive.c
index a1ef28c8e3d0deb9bceb686215ce5dfbaf0a53a2..d934d14384f8010a8a9ee22801d06e4f86798a82 100644 (file)
--- a/dive.c
+++ b/dive.c
@@ -222,6 +222,7 @@ struct dive *fixup_dive(struct dive *dive)
 #define MERGE_MAX(res, a, b, n) res->n = MAX(a->n, b->n)
 #define MERGE_MIN(res, a, b, n) res->n = (a->n)?(b->n)?MIN(a->n, b->n):(a->n):(b->n)
 #define MERGE_TXT(res, a, b, n) res->n = merge_text(a->n, b->n)
+#define MERGE_NONZERO(res, a, b, n) res->n = a->n ? a->n : b->n
 
 static struct dive *add_sample(struct sample *sample, int time, struct dive *dive)
 {
@@ -411,6 +412,8 @@ struct dive *try_to_merge(struct dive *a, struct dive *b)
        res = alloc_dive();
 
        res->when = a->when;
+       MERGE_NONZERO(res, a, b, latitude);
+       MERGE_NONZERO(res, a, b, longitude);
        MERGE_TXT(res, a, b, location);
        MERGE_TXT(res, a, b, notes);
        MERGE_TXT(res, a, b, buddy);