diff options
Diffstat (limited to 'bytecomp/printlambda.ml')
-rw-r--r-- | bytecomp/printlambda.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecomp/printlambda.ml b/bytecomp/printlambda.ml index 3f42f7e1e..a67642b2e 100644 --- a/bytecomp/printlambda.ml +++ b/bytecomp/printlambda.ml @@ -185,7 +185,7 @@ let rec lam ppf = function Ident.print ppf id | Lconst cst -> struct_const ppf cst - | Lapply(lfun, largs) -> + | Lapply(lfun, largs, _) -> let lams ppf largs = List.iter (fun l -> fprintf ppf "@ %a" lam l) largs in fprintf ppf "@[<2>(apply@ %a%a)@]" lam lfun lams largs |