diff options
author | Robert C. Helling <helling@atdotde.de> | 2017-03-28 08:56:14 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-28 13:31:45 -0700 |
commit | d344779c47451bd5b7a85972da4895ea2649e5b3 (patch) | |
tree | 9895d385844fbe6c16867af37e24876c53d0fbc0 /core/planner.c | |
parent | eefa390e5f53e3124f996124c25c487da5f008ca (diff) | |
download | subsurface-d344779c47451bd5b7a85972da4895ea2649e5b3.tar.gz |
Fix missing slash in markup
Reported-by: Stefan Fuchs
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'core/planner.c')
-rw-r--r-- | core/planner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/planner.c b/core/planner.c index a3ae39a1e..9791523d2 100644 --- a/core/planner.c +++ b/core/planner.c @@ -584,7 +584,7 @@ static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool return; } - len = show_disclaimer ? snprintf(buffer, sz_buffer, "<div><b>%s<b><br></div>", disclaimer) : 0; + len = show_disclaimer ? snprintf(buffer, sz_buffer, "<div><b>%s</b><br></div>", disclaimer) : 0; if (diveplan->surface_interval > 60) { len += snprintf(buffer + len, sz_buffer - len, "<div><b>%s %d:%02d)</b><br>", |