diff options
Diffstat (limited to 'libc/pwd_grp/getgrnam.c')
-rw-r--r-- | libc/pwd_grp/getgrnam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/pwd_grp/getgrnam.c b/libc/pwd_grp/getgrnam.c index 999404284..6f2634cee 100644 --- a/libc/pwd_grp/getgrnam.c +++ b/libc/pwd_grp/getgrnam.c @@ -30,7 +30,7 @@ struct group *getgrnam(const char *name) struct group *group; if (name == NULL) { - errno = EINVAL; + __set_errno(EINVAL); return NULL; } |