aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-11-08 10:59:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-11-08 10:59:02 +0200
commitb2b815c6ebb229086d7894bf51460277e6d522d3 (patch)
treebc0413553221dff2ddbd580a180f1aa34d9fcbf0
parent3821b300f4ac7b7c9f91c9077a1ec8b3b38b4b40 (diff)
Adjust to diagnostics epilogue interface change
-rw-r--r--bpkg/diagnostics.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/diagnostics.hxx b/bpkg/diagnostics.hxx
index 6090331..e8d9f0a 100644
--- a/bpkg/diagnostics.hxx
+++ b/bpkg/diagnostics.hxx
@@ -286,9 +286,9 @@ namespace bpkg
: 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 ();
}) {}
};