From 1835af18fbaccc7856d19688cbe003fd81dae2ae Mon Sep 17 00:00:00 2001 From: Spiros Eliopoulos Date: Sat, 10 Feb 2018 21:57:16 +0000 Subject: [PATCH] js-annot: fix caml_ba_unsafe_set in annotation --- lib/runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runtime.js b/lib/runtime.js index bdff249..2408cfd 100644 --- a/lib/runtime.js +++ b/lib/runtime.js @@ -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));