diff options
Diffstat (limited to 'byterun/obj.c')
-rw-r--r-- | byterun/obj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/obj.c b/byterun/obj.c index 72464b315f..f095df5ae6 100644 --- a/byterun/obj.c +++ b/byterun/obj.c @@ -191,7 +191,7 @@ CAMLprim value caml_lazy_make_forward (value v) CAMLlocal1 (res); res = caml_alloc_small (1, Forward_tag); - Modify (&Field (res, 0), v); + Field (res, 0) = v; CAMLreturn (res); } |