Explorar el Código

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

Manuel Novoa III hace 21 años
padre
commit
14533cd394
Se han modificado 1 ficheros con 1 adiciones y 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;