diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/verify_report.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify_report.h b/src/verify_report.h index a9ec1155..b6b99391 100644 --- a/src/verify_report.h +++ b/src/verify_report.h @@ -201,9 +201,9 @@ public: void list_item(std::string const& text, boost::optional<std::string> type = {}) override { if (type) { - _file.puts(dcp::String::compose("<li class=\"%1\">%2</li>", *type, text).c_str()); + _file.puts(dcp::String::compose("<li class=\"%1\">%2</li>\n", *type, text).c_str()); } else { - _file.puts(dcp::String::compose("<li>%1</li>", text).c_str()); + _file.puts(dcp::String::compose("<li>%1</li>\n", text).c_str()); } } |
