diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2015-02-15 14:03:57 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-15 06:01:22 -0800 |
commit | b84c885a9461852af35cefbc4fed86ea1a2eef4f (patch) | |
tree | fb4b0f5f5094703d95ad2917e41434642a7ae5d5 /save-xml.c | |
parent | 39ffb0fced85c1179af361ad77f2bd40d61deb89 (diff) | |
download | subsurface-b84c885a9461852af35cefbc4fed86ea1a2eef4f.tar.gz |
Get rid of double space after uuid in ssrf file
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'save-xml.c')
-rw-r--r-- | save-xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/save-xml.c b/save-xml.c index c09b90812..d5f1e158a 100644 --- a/save-xml.c +++ b/save-xml.c @@ -517,7 +517,7 @@ void save_dives_buffer(struct membuffer *b, const bool select_only) i--; // since we just deleted that one continue; } - put_format(b, "<site uuid='%8x' ", ds->uuid); + put_format(b, "<site uuid='%8x'", ds->uuid); show_utf8(b, ds->name, " name='", "'", 1); if (ds->latitude.udeg || ds->longitude.udeg) { put_degrees(b, ds->latitude, " gps='", " "); |