mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f09f7f1778
ocamlPackages.merlin: 3.4.2 → 3.8.0 ocamlPackages.merlin: 4.5 → 4.6 ocamlPackages.{atd,atdgen}: 2.9.1 → 2.10.0 ocamlPackages.elpi: fix build with atd 2.10.0
13 lines
493 B
Diff
13 lines
493 B
Diff
diff --git a/src/elpi_trace_elaborator.ml b/src/elpi_trace_elaborator.ml
|
|
index ca13114d..093e7593 100644
|
|
--- a/src/elpi_trace_elaborator.ml
|
|
+++ b/src/elpi_trace_elaborator.ml
|
|
@@ -664,6 +664,6 @@ let main =
|
|
|
|
let cards = Trace.cards steps ~stack_frames ~aggregated_goal_success ~goal_text ~goal_attempts in
|
|
|
|
- let ob = Bi_outbuf.create_channel_writer stdout in
|
|
+ let ob = Buffer.create 17 in
|
|
write_trace ob cards;
|
|
- Bi_outbuf.flush_channel_writer ob
|
|
+ Buffer.output_buffer stdout ob
|