summaryrefslogtreecommitdiffstats
path: root/core/save-xml.c
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2017-09-10 10:53:45 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-09-11 07:19:57 -0700
commitd7c89a79f81653e45907a13f3d802a6df9a2aad4 (patch)
treed0daf90f961a7a9d3f53c03bc0774f90f5e7e0f1 /core/save-xml.c
parent15ef53fb805a96fec1dd9358ce58bcef6de9baab (diff)
downloadsubsurface-d7c89a79f81653e45907a13f3d802a6df9a2aad4.tar.gz
Do not save duration if it is zero
See #561
Diffstat (limited to 'core/save-xml.c')
-rw-r--r--core/save-xml.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/save-xml.c b/core/save-xml.c
index f7564f4b1..84530a749 100644
--- a/core/save-xml.c
+++ b/core/save-xml.c
@@ -457,8 +457,11 @@ void save_one_dive_to_mb(struct membuffer *b, struct dive *dive)
fprintf(stderr, "removed reference to non-existant dive site with uuid %08x\n", dive->dive_site_uuid);
}
show_date(b, dive->when);
- put_format(b, " duration='%u:%02u min'>\n",
- FRACTION(dive->dc.duration.seconds, 60));
+ if (dive->dc.duration.seconds > 0)
+ put_format(b, " duration='%u:%02u min'>\n",
+ FRACTION(dive->dc.duration.seconds, 60));
+ else
+ put_format(b, ">\n");
save_overview(b, dive);
save_cylinder_info(b, dive);
save_weightsystem_info(b, dive);