diff options
Diffstat (limited to 'core/save-git.c')
-rw-r--r-- | core/save-git.c | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/core/save-git.c b/core/save-git.c index ed91debf4..f2803c315 100644 --- a/core/save-git.c +++ b/core/save-git.c @@ -220,10 +220,15 @@ static void show_date(struct membuffer *b, timestamp_t when) tm.tm_hour, tm.tm_min, tm.tm_sec); } +static void show_integer(struct membuffer *b, int value, const char *pre, const char *post) +{ + put_format(b, " %s%d%s", pre, value, post); +} + static void show_index(struct membuffer *b, int value, const char *pre, const char *post) { if (value) - put_format(b, " %s%d%s", pre, value, post); + show_integer(b, value, pre, post); } /* @@ -314,7 +319,7 @@ static void save_samples(struct membuffer *b, int nr, struct sample *s) } } -static void save_one_event(struct membuffer *b, struct event *ev) +static void save_one_event(struct membuffer *b, struct dive *dive, struct event *ev) { put_format(b, "event %d:%02d", FRACTION(ev->time.seconds, 60)); show_index(b, ev->type, "type=", ""); @@ -322,19 +327,18 @@ static void save_one_event(struct membuffer *b, struct event *ev) show_index(b, ev->value, "value=", ""); show_utf8(b, " name=", ev->name, ""); if (event_is_gaschange(ev)) { - if (ev->gas.index >= 0) { - show_index(b, ev->gas.index, "cylinder=", ""); - put_gasmix(b, &ev->gas.mix); - } else - put_gasmix(b, &ev->gas.mix); + struct gasmix *mix = get_gasmix_from_event(dive, ev); + if (ev->gas.index >= 0) + show_integer(b, ev->gas.index, "cylinder=", ""); + put_gasmix(b, mix); } put_string(b, "\n"); } -static void save_events(struct membuffer *b, struct event *ev) +static void save_events(struct membuffer *b, struct dive *dive, struct event *ev) { while (ev) { - save_one_event(b, ev); + save_one_event(b, dive, ev); ev = ev->next; } } @@ -362,7 +366,7 @@ static void save_dc(struct membuffer *b, struct dive *dive, struct divecomputer put_duration(b, dc->surfacetime, "surfacetime ", "min\n"); save_extra_data(b, dc->extra_data); - save_events(b, dc->events); + save_events(b, dive, dc->events); save_samples(b, dc->samples, dc->sample); } |