diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-06 03:29:33 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-06 03:29:33 +0000 |
commit | 14533cd394162e7520b502581961d9f256f03ee6 (patch) | |
tree | 170a9e3a1f99e3801d6afc4d451615292a2f2a8a /libc/pwd_grp/__getgrent.c | |
parent | 24b3f737bcf067a92e098e98b0684491400e4181 (diff) |
Small fix for when threading (I think) was disabled.
Diffstat (limited to 'libc/pwd_grp/__getgrent.c')
-rw-r--r-- | libc/pwd_grp/__getgrent.c | 2 |
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; |