Skip to content

Commit

Permalink
Try to fix nr of arguments in Message constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-portegies committed Jan 7, 2025
1 parent 7a3b8a7 commit 8ba1b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exceptions.ml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ let info_counter = Summary.ref ~name:"info_counter" 0
*)
let wp_feedback_logger (fb : feedback) : unit =
match fb.contents with
| Message (lvl, _, msg) ->
| Message (lvl, _, _, msg) ->
(feedback_log lvl :=
(msg) :: !(feedback_log lvl);
info_counter := !info_counter + 1)
Expand Down

0 comments on commit 8ba1b8b

Please sign in to comment.