Skip to content

Commit

Permalink
Fixed lamch bytecode bindings bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmottl committed May 5, 2023
1 parent 8de85c3 commit 0bfc6b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/impl_SD.h
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ CAMLprim double LFUN(lamch_stub)(value vCMACH)
return FUN(lamch)(&CMACH);
}

CAMLprim value LFUN(lamch_stub_bc)(value *argv, int __unused argn)
CAMLprim value LFUN(lamch_stub_bc)(value vCMACH)
{
return caml_copy_double(LFUN(lamch_stub)(argv[0]));
return caml_copy_double(LFUN(lamch_stub)(vCMACH));
}


Expand Down

0 comments on commit 0bfc6b3

Please sign in to comment.