From 3f62f76cab46fbd28248ed251a88278c6ea1be3a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 1 Sep 2012 00:20:24 -0400 Subject: 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. --- include/poll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/poll.h b/include/poll.h index f868ab57..36ef7fee 100644 --- a/include/poll.h +++ b/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 { -- cgit v1.2.1