summaryrefslogtreecommitdiffstats
path: root/core/save-git.c
diff options
context:
space:
mode:
authorGravatar Stefan Fuchs <sfuchs@gmx.de>2017-11-05 15:58:24 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-11-13 20:50:10 -0800
commitadbc71f9daf6778cf7402a18f9d954226bfceda4 (patch)
tree775ed19cf46165a707a5b69393fdabf37d3a939f /core/save-git.c
parent1f8506ce645000bd158fcd3b2c9c799505c78bb2 (diff)
downloadsubsurface-adbc71f9daf6778cf7402a18f9d954226bfceda4.tar.gz
Init every struct sample with default values
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'core/save-git.c')
-rw-r--r--core/save-git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/save-git.c b/core/save-git.c
index 6496d28ad..7d7c8d9d2 100644
--- a/core/save-git.c
+++ b/core/save-git.c
@@ -350,7 +350,7 @@ static void save_samples(struct membuffer *b, struct dive *dive, struct divecomp
int nr;
int o2sensor;
struct sample *s;
- struct sample dummy = {};
+ struct sample dummy = { .bearing.degrees = -1, .ndl.seconds = -1 };
/* Is this a CCR dive with the old-style "o2pressure" sensor? */
o2sensor = legacy_format_o2pressures(dive, dc);