Skip to content

Commit

Permalink
Adding argument to unsupported_opt
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevendeo committed Sep 25, 2023
1 parent f6ed2dc commit d58c276
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/common/solving_loop.ml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ let empty_solver_ctx = {
global = [];
}

let unsupported_opt =
Printer.print_wrn "unsupported option %s"
let unsupported_opt s =
Printer.print_wrn "unsupported option %s" s

let main () =
let () = Dolmen_loop.Code.init [] in
Expand Down Expand Up @@ -430,7 +430,7 @@ let main () =
let handle_get_info (st : State.t) (kind: string) =
let print_std =
fun (type a) (pp :(Format.formatter -> a -> unit)) (a : a) ->
Printer.print_std ~flushed:true "(%s %a)" kind pp a
Printer.print_std "(%s %a)" kind pp a
in
match kind with
| ":authors" ->
Expand Down

0 comments on commit d58c276

Please sign in to comment.