diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-03-23 22:52:51 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-03-23 22:52:51 +0000 |
commit | af2458a8d467005847aeefea5053ea242334bafd (patch) | |
tree | c43049fcca108c434bb22f4b9db55a70a841ea81 /bindings/ocaml/llvm | |
parent | 26a412e07355a546ae022d4d4f9ef4083a7bd0d2 (diff) | |
download | external_llvm-af2458a8d467005847aeefea5053ea242334bafd.zip external_llvm-af2458a8d467005847aeefea5053ea242334bafd.tar.gz external_llvm-af2458a8d467005847aeefea5053ea242334bafd.tar.bz2 |
Another typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/ocaml/llvm')
-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 */ \ |