diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-08-16 10:28:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-08-16 10:28:10 -0700 |
commit | 91e7dcc555ada4fe43198327383e895e528c4cc7 (patch) | |
tree | a7f05de14c62373c4f59005b5c1e6cebf28a1ff5 /save-xml.c | |
parent | 77a903a6bb26d60e1736f7d5c118b598916b37f2 (diff) | |
parent | e8ec3df371f0496a52ebdc463245d7b9df3be6ff (diff) | |
download | subsurface-91e7dcc555ada4fe43198327383e895e528c4cc7.tar.gz |
Merge branch 'suit' of git://git.hohndel.org/subsurface
Pull exposure suit tracking from Dirk Hohndel.
* 'suit' of git://git.hohndel.org/subsurface:
Add exposure protection tracking
Diffstat (limited to 'save-xml.c')
-rw-r--r-- | save-xml.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/save-xml.c b/save-xml.c index ed55c022d..37d6d062e 100644 --- a/save-xml.c +++ b/save-xml.c @@ -183,6 +183,7 @@ static void save_overview(FILE *f, struct dive *dive) show_utf8(f, dive->divemaster, " <divemaster>","</divemaster>\n"); show_utf8(f, dive->buddy, " <buddy>","</buddy>\n"); show_utf8(f, dive->notes, " <notes>","</notes>\n"); + show_utf8(f, dive->suit, " <suit>","</suit>\n"); } static void save_cylinder_info(FILE *f, struct dive *dive) |