mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Fix wrongly nested watertemp xml entry
Too much cut-and-paste: the ending tag said "airtemp". Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
bafc7e771e
commit
f7fb74f3a7
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ static void save_overview(FILE *f, struct dive *dive)
|
|||
show_depth(f, dive->maxdepth, " <maxdepth>", "</maxdepth>\n");
|
||||
show_depth(f, dive->meandepth, " <meandepth>", "</meandepth>\n");
|
||||
show_temperature(f, dive->airtemp, " <airtemp>", "</airtemp>\n");
|
||||
show_temperature(f, dive->watertemp, " <watertemp>", "</airtemp>\n");
|
||||
show_temperature(f, dive->watertemp, " <watertemp>", "</watertemp>\n");
|
||||
show_duration(f, dive->duration, " <duration>", "</duration>\n");
|
||||
show_duration(f, dive->surfacetime, " <surfacetime>", "</surfacetime>\n");
|
||||
show_pressure(f, dive->beginning_pressure, " <cylinderstartpressure>", "</cylinderstartpressure>\n");
|
||||
|
|
Loading…
Reference in a new issue