aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-11-08 11:05:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-11-08 11:05:29 +0200
commit37fc4328e7ca2a0caa4beef4ae37ae0e39c84605 (patch)
tree1c1e0f55d9fb68d5016abef2741794d3a6871fc4
parent9a3245fba0bc0630b2bb6f998fba864de1384132 (diff)
Adjust to diagnostics epilogue interface change
-rw-r--r--openssl/diagnostics.hxx4
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 ();
}) {}
};