mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 01:51:03 +09:00
LibCrypto: Do not print OpenSSL errors with redundant newline
This commit is contained in:
parent
80fe259dab
commit
75841f5920
Notes:
github-actions[bot]
2025-03-02 14:12:48 +00:00
Author: https://github.com/devgianlu
Commit: 75841f5920
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3749
Reviewed-by: https://github.com/konradekk
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
inline int openssl_print_errors(char const* str, size_t len, [[maybe_unused]] void* u)
|
inline int openssl_print_errors(char const* str, size_t len, [[maybe_unused]] void* u)
|
||||||
{
|
{
|
||||||
dbgln("{}", StringView { str, len });
|
dbgln("{}", StringView { str, len - 1 });
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue