summaryrefslogtreecommitdiff
path: root/libc/pwd_grp
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-09-06 03:29:33 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-09-06 03:29:33 +0000
commit14533cd394162e7520b502581961d9f256f03ee6 (patch)
tree170a9e3a1f99e3801d6afc4d451615292a2f2a8a /libc/pwd_grp
parent24b3f737bcf067a92e098e98b0684491400e4181 (diff)
Small fix for when threading (I think) was disabled.
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;