Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com From: "Christian Jullien" To: Subject: PROPOSED FIX to remove warning in 1.1.5-3 sys/types.h Date: Fri, 3 Nov 2000 20:32:48 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Hi, The following macro in sys/types.h # define FD_ZERO(p) (__extension__ (void)({ \ int i; \ char *__tmp = (char *)p; \ for (i = 0; i < sizeof (*(p)); ++i) \ *__tmp++ = 0; \ })) raise a new warning 'signed unsigned comparison' I suggest to replace int i; with unsigned int i; A better solution should be to include stddef (for size_t) and have: size_t i; which is the type returned by sizeof. But, unless I'm totaly wrong, the fastest solution is to use memset that will be expanded inline with assembly code. Right? regards. Christian Jullien -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com