diff options
-rw-r--r-- | otherlibs/unix/initgroups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/initgroups.c b/otherlibs/unix/initgroups.c index ff81e8842..df358dae1 100644 --- a/otherlibs/unix/initgroups.c +++ b/otherlibs/unix/initgroups.c @@ -30,7 +30,7 @@ CAMLprim value unix_initgroups(value user, value group) { if (initgroups(String_val(user), Int_val(group)) == -1) { - uerror("setgroups", Nothing); + uerror("initgroups", Nothing); } return Val_unit; } |