summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/setgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/setgid.c')
-rw-r--r--otherlibs/unix/setgid.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/setgid.c b/otherlibs/unix/setgid.c
index 482f25a8b..596a01d33 100644
--- a/otherlibs/unix/setgid.c
+++ b/otherlibs/unix/setgid.c
@@ -14,8 +14,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_setgid(gid) /* ML */
- value gid;
+value unix_setgid(value gid) /* ML */
{
if (setgid(Int_val(gid)) == -1) uerror("setgid", Nothing);
return Val_unit;