Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Make __fd_mask unsigned.



details:   https://anonhg.NetBSD.org/src/rev/1b4b648870a8
branches:  trunk
changeset: 756189:1b4b648870a8
user:      rmind <rmind%NetBSD.org@localhost>
date:      Thu Jul 08 13:58:52 2010 +0000

description:
Make __fd_mask unsigned.

diffstat:

 sys/sys/fd_set.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 0e37254cc0fe -r 1b4b648870a8 sys/sys/fd_set.h
--- a/sys/sys/fd_set.h  Thu Jul 08 13:30:53 2010 +0000
+++ b/sys/sys/fd_set.h  Thu Jul 08 13:58:52 2010 +0000
@@ -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)



Home | Main Index | Thread Index | Old Index