mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 21:13:23 +00:00
Fix missing slash in markup
Reported-by: Stefan Fuchs Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
parent
eefa390e5f
commit
d344779c47
1 changed files with 1 additions and 1 deletions
|
@ -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>",
|
||||
|
|
Loading…
Add table
Reference in a new issue