Skip to content

Commit

Permalink
js-annot: fix caml_ba_unsafe_set in annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
seliopou committed Feb 10, 2018
1 parent 2e6e328 commit 1835af1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function angstrom_bigstring_blit_to_bytes(src, src_off, dst, dst_off, len) {
}

//Provides: angstrom_bigstring_blit_to_bigstring
//Requires: caml_ba_unsafe_set_1, caml_ba_get_1
//Requires: caml_ba_set_1, caml_ba_get_1
function angstrom_bigstring_blit_to_bigstring(src, src_off, dst, dst_off, len) {
for (var i = 0; i < len; i++) {
caml_ba_set_1(dst, dst_off + i, caml_ba_get_1(src, src_off + i));
Expand Down

0 comments on commit 1835af1

Please sign in to comment.