diff options
-rw-r--r-- | bindings/ocaml/llvm/llvm_ocaml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c index 9943af7..1b76488 100644 --- a/bindings/ocaml/llvm/llvm_ocaml.c +++ b/bindings/ocaml/llvm/llvm_ocaml.c @@ -72,7 +72,7 @@ static value alloc_variant(int tag, void *Value) { cty Next = LLVMGetNext##cname(Kid); \ if (Next) \ return alloc_variant(1, Next); \ - return alloc_variant(0, pfun(Kid)) ; \ + return alloc_variant(0, pfun(Kid)); \ } \ \ /* llmodule -> ('a, 'b) llrev_pos */ \ |