diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 11:05:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 11:05:29 +0200 |
commit | 37fc4328e7ca2a0caa4beef4ae37ae0e39c84605 (patch) | |
tree | 1c1e0f55d9fb68d5016abef2741794d3a6871fc4 /openssl/diagnostics.hxx | |
parent | 9a3245fba0bc0630b2bb6f998fba864de1384132 (diff) |
Adjust to diagnostics epilogue interface change
Diffstat (limited to 'openssl/diagnostics.hxx')
-rw-r--r-- | openssl/diagnostics.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/diagnostics.hxx b/openssl/diagnostics.hxx index b918c94..e22986b 100644 --- a/openssl/diagnostics.hxx +++ b/openssl/diagnostics.hxx @@ -84,9 +84,9 @@ namespace openssl : basic_mark_base (type, nullptr, data, - [](const diag_record& r) + [](const diag_record& r, butl::diag_writer* w) { - r.flush (); + r.flush (w); throw failed (); }) {} }; |