diff options
-rw-r--r-- | bdep/diagnostics.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/diagnostics.hxx b/bdep/diagnostics.hxx index e560724..689e4eb 100644 --- a/bdep/diagnostics.hxx +++ b/bdep/diagnostics.hxx @@ -241,9 +241,9 @@ namespace bdep : 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 (); }) {} }; |