diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-11-20 15:30:43 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-11-20 15:30:43 +0000 |
commit | 0436b11bfd56d185f49606f678103347454d9feb (patch) | |
tree | bf751fe68990373cf305b4265a0f284e32beaf95 /byterun/obj.c | |
parent | 12e7a163174c836da0fd598e14c12411e0a61e10 (diff) | |
download | ocaml-0436b11bfd56d185f49606f678103347454d9feb.tar.gz |
Nouvelle interface pour do_local_roots en natif
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1793 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
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 f0383a3826..47bc34b506 100644 --- a/byterun/obj.c +++ b/byterun/obj.c @@ -28,7 +28,7 @@ value static_alloc(value size) /* ML */ value static_free(value blk) /* ML */ { - stat_free((char *) blk); + stat_free((void *) blk); return Val_unit; } |