From: Rich Felker Date: Sat, 1 Sep 2012 04:20:24 +0000 (-0400) Subject: fix wrong type for poll.h nfds_t X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=3f62f76cab46fbd28248ed251a88278c6ea1be3a 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. --- 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 {