Explorar o código

Small fix for when threading (I think) was disabled.

Manuel Novoa III %!s(int64=22) %!d(string=hai) anos
pai
achega
14533cd394
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      libc/pwd_grp/__getgrent.c

+ 1 - 1
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;