mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 12:42:02 +00:00
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.
This commit is contained in:
@ -17,7 +17,7 @@ extern "C" {
|
||||
#define POLLWRBAND 0x200
|
||||
#define POLLMSG 0x400
|
||||
|
||||
typedef unsigned int nfds_t;
|
||||
typedef unsigned long nfds_t;
|
||||
|
||||
struct pollfd
|
||||
{
|
||||
|
Reference in New Issue
Block a user