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 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; } |