diff options
Diffstat (limited to 'core/save-xml.c')
-rw-r--r-- | core/save-xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/save-xml.c b/core/save-xml.c index 53d7a3af6..3570861e4 100644 --- a/core/save-xml.c +++ b/core/save-xml.c @@ -498,6 +498,8 @@ void save_one_dive_to_mb(struct membuffer *b, struct dive *dive, bool anonymize) put_format(b, " surge='%d'", dive->surge); if (dive->chill) put_format(b, " chill='%d'", dive->chill); + if (dive->invalid) + put_format(b, " invalid"); save_tags(b, dive->tag_list); if (dive->dive_site) put_format(b, " divesiteid='%8x'", dive->dive_site->uuid); |