diff options
-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 (); }) {} }; |