mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
Drop explicit unsigned from FD_SETSIZE constant
FD_SETSIZE is often used as an argument to select or compared with an integer file descriptor. Rather than force 3rd party software to add explicit casts, just make it a plain (int) constant as on other operating systems. Previous discussion: http://lists.freebsd.org/pipermail/freebsd-standards/2012-July/002410.html
This commit is contained in:
parent
101dfa0ed4
commit
bd92124545
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=265051
@ -56,7 +56,7 @@ typedef __sigset_t sigset_t;
|
||||
* be enough for most uses.
|
||||
*/
|
||||
#ifndef FD_SETSIZE
|
||||
#define FD_SETSIZE 1024U
|
||||
#define FD_SETSIZE 1024
|
||||
#endif
|
||||
|
||||
#define _NFDBITS (sizeof(__fd_mask) * 8) /* bits per mask */
|
||||
|
Loading…
Reference in New Issue
Block a user