diff options
Diffstat (limited to 'otherlibs/unix/chroot.c')
-rw-r--r-- | otherlibs/unix/chroot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/chroot.c b/otherlibs/unix/chroot.c index 864690367..444a56dc1 100644 --- a/otherlibs/unix/chroot.c +++ b/otherlibs/unix/chroot.c @@ -14,8 +14,7 @@ #include <mlvalues.h> #include "unixsupport.h" -value unix_chroot(path) /* ML */ - value path; +value unix_chroot(value path) /* ML */ { int ret; ret = chroot(String_val(path)); |