diff options
-rw-r--r-- | bbot/diagnostics.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/diagnostics.hxx b/bbot/diagnostics.hxx index c5a81d7..b98e7c5 100644 --- a/bbot/diagnostics.hxx +++ b/bbot/diagnostics.hxx @@ -134,9 +134,9 @@ namespace bbot indent, nullptr, data, - [](const diag_record& r) + [](const diag_record& r, butl::diag_writer* w) { - r.flush (); + r.flush (w); throw failed (); }) {} |