summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/chmod.c')
-rw-r--r--otherlibs/unix/chmod.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/chmod.c b/otherlibs/unix/chmod.c
index 557e20a60..c73c8892d 100644
--- a/otherlibs/unix/chmod.c
+++ b/otherlibs/unix/chmod.c
@@ -16,8 +16,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_chmod(path, perm) /* ML */
- value path, perm;
+value unix_chmod(value path, value perm) /* ML */
{
int ret;
ret = chmod(String_val(path), Int_val(perm));