Explorar o código

fix wrong type for poll.h nfds_t

this should not break anything since the type should never be used
except as the argument type for poll.
Rich Felker %!s(int64=12) %!d(string=hai) anos
pai
achega
3f62f76cab
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      include/poll.h

+ 1 - 1
include/poll.h

@@ -17,7 +17,7 @@ extern "C" {
 #define POLLWRBAND 0x200
 #define POLLMSG    0x400
 
-typedef unsigned int nfds_t;
+typedef unsigned long nfds_t;
 
 struct pollfd
 {