Module Name: src Committed By: rmind Date: Thu Jul 8 13:58:52 UTC 2010
Modified Files: src/sys/sys: fd_set.h Log Message: Make __fd_mask unsigned. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/sys/fd_set.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/fd_set.h diff -u src/sys/sys/fd_set.h:1.3 src/sys/sys/fd_set.h:1.4 --- src/sys/sys/fd_set.h:1.3 Thu Jul 8 12:23:31 2010 +++ src/sys/sys/fd_set.h Thu Jul 8 13:58:52 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: fd_set.h,v 1.3 2010/07/08 12:23:31 rmind Exp $ */ +/* $NetBSD: fd_set.h,v 1.4 2010/07/08 13:58:52 rmind Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -43,7 +43,7 @@ * POSIX does not specify them. */ -typedef __int32_t __fd_mask; +typedef __uint32_t __fd_mask; /* 32 = 2 ^ 5 */ #define __NFDBITS (32)