From 14533cd394162e7520b502581961d9f256f03ee6 Mon Sep 17 00:00:00 2001
From: Manuel Novoa III <mjn3@codepoet.org>
Date: Sat, 6 Sep 2003 03:29:33 +0000
Subject: Small fix for when threading (I think) was disabled.

---
 libc/pwd_grp/__getgrent.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'libc')

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;
 
-- 
cgit v1.2.3