diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 10:59:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 10:59:02 +0200 |
commit | b2b815c6ebb229086d7894bf51460277e6d522d3 (patch) | |
tree | bc0413553221dff2ddbd580a180f1aa34d9fcbf0 | |
parent | 3821b300f4ac7b7c9f91c9077a1ec8b3b38b4b40 (diff) |
Adjust to diagnostics epilogue interface change
-rw-r--r-- | bpkg/diagnostics.hxx | 4 |
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 (); }) {} }; |