summaryrefslogtreecommitdiff
path: root/libc/pwd_grp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/pwd_grp')
-rw-r--r--libc/pwd_grp/__getgrent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/pwd_grp/__getgrent.c b/libc/pwd_grp/__getgrent.c
index b896a976a..ad0b8beb5 100644
--- a/libc/pwd_grp/__getgrent.c
+++ b/libc/pwd_grp/__getgrent.c
@@ -97,7 +97,7 @@ restart:
goto restart;
*ptr++ = '\0';
- group.gr_gid = (gid_t) strtoul(field_begin, &endptr, 10);
+ group.gr_gid = (__gid_t) strtoul(field_begin, &endptr, 10);
if (*endptr != '\0')
goto restart;