diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2020-11-15 15:53:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-15 15:53:42 -0800 |
commit | d3972cfa7e1abe2fd5fa10da56db3da4759e14dd (patch) | |
tree | cfe5c49ca9d600b94c9d763d07969d2dc660a1b6 /contrib/gen_manual/gen_manual.cpp | |
parent | 3d67671559be723b0912bbee2fcd2eb14783a721 (diff) | |
parent | 0760724577e7c62cfdc1de6ecae400ab653bb2bf (diff) |
Merge pull request #954 from lz4/dev
v1.9.3
Diffstat (limited to 'contrib/gen_manual/gen_manual.cpp')
-rw-r--r-- | contrib/gen_manual/gen_manual.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/gen_manual/gen_manual.cpp b/contrib/gen_manual/gen_manual.cpp index bedef94..d5fe702 100644 --- a/contrib/gen_manual/gen_manual.cpp +++ b/contrib/gen_manual/gen_manual.cpp @@ -96,10 +96,9 @@ void print_line(stringstream &sout, string line) epos = line.find("*/"); if (spos!=string::npos && epos!=string::npos) { sout << line.substr(0, spos); - sout << "</b>" << line.substr(spos) << "<b>" << endl; + sout << "</b>" << line.substr(spos) << "<b>" << '\n'; } else { - // fprintf(stderr, "lines=%s\n", line.c_str()); - sout << line << endl; + sout << line << '\n'; } } |