summaryrefslogtreecommitdiff
path: root/compiler/Main.ml
diff options
context:
space:
mode:
authorSon HO2024-05-24 14:16:37 +0200
committerGitHub2024-05-24 14:16:37 +0200
commitc6c9e351546a723e62cc21579b2359dba3bfb56f (patch)
tree74ed652b8862d1dde24ccd65b6c29503ea3db35c /compiler/Main.ml
parente669de58b71fd68642cfacf1a2e3cbd1c5b2f4fe (diff)
parent69ff150ede10b7d24f9777298e8ca3de163c33e1 (diff)
Merge pull request #175 from AeneasVerif/afromher/meta
Rename meta into span
Diffstat (limited to 'compiler/Main.ml')
-rw-r--r--compiler/Main.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Main.ml b/compiler/Main.ml
index 6161f2f2..29322049 100644
--- a/compiler/Main.ml
+++ b/compiler/Main.ml
@@ -282,7 +282,7 @@ let () =
if !Errors.error_list <> [] then (
List.iter
- (fun (meta, msg) -> log#serror (Errors.format_error_message meta msg))
+ (fun (span, msg) -> log#serror (Errors.format_error_message span msg))
(* Reverse the list of error messages so that we print them from the
earliest to the latest. *)
(List.rev !Errors.error_list);