code cleanup: use gasmix_air for zero initialized gas

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-01-08 20:54:53 -08:00
parent c81693d023
commit 247194e839

View file

@ -264,7 +264,7 @@ enum divemode_t get_current_divemode(const struct divecomputer *dc, int time, co
struct gasmix get_gasmix_from_event(const struct dive *dive, const struct event *ev) struct gasmix get_gasmix_from_event(const struct dive *dive, const struct event *ev)
{ {
struct gasmix dummy = { 0 }; struct gasmix dummy = gasmix_air;
if (ev && event_is_gaschange(ev)) { if (ev && event_is_gaschange(ev)) {
int index = ev->gas.index; int index = ev->gas.index;
if (index >= 0 && index < dive->cylinders.nr) if (index >= 0 && index < dive->cylinders.nr)