Skip to content

Commit

Permalink
rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
Gbury committed Aug 31, 2024
1 parent fb42890 commit 23c32dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/loop/export.ml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ module Dummy

let init fmt = fmt

let print _ fmt _ =
let print st fmt _ =
Format.fprintf fmt "statement@.";
st, fmt

Expand Down Expand Up @@ -642,7 +642,7 @@ module Make
let (module P) = printer in
let st, _ =
List.fold_left (fun (st, acc) stmt ->
let acc = P.print st acc stmt in
let st, acc = P.print st acc stmt in
let st = State.set state (Export { acc; printer; }) st in
st, acc
) (st, acc) l
Expand Down

0 comments on commit 23c32dc

Please sign in to comment.