Init every struct sample with default values

Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
Stefan Fuchs 2017-11-05 15:58:24 +01:00 committed by Dirk Hohndel
parent 1f8506ce64
commit adbc71f9da
4 changed files with 9 additions and 4 deletions

View file

@ -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);