From owner-freebsd-current Mon Dec 11 08:37:23 1995 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id IAA26171 for current-outgoing; Mon, 11 Dec 1995 08:37:23 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id IAA26136 for ; Mon, 11 Dec 1995 08:37:12 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id DAA17518 for current@freebsd.org; Tue, 12 Dec 1995 03:34:20 +1100 Date: Tue, 12 Dec 1995 03:34:20 +1100 From: Bruce Evans Message-Id: <199512111634.DAA17518@godzilla.zeta.org.au> To: current@freebsd.org Subject: new warnings from gcc-2.7.2 for compiling LINT kernel Sender: owner-current@freebsd.org Precedence: bulk gcc-2.7.2 complains about a lot of old lint. "left-hand operand of comma expression has no effect": 787 instances. This is from the MAKE_SET() macro which doesn't really work anyway and is easy to fix. "comparison between signed and unsigned": 2892 instances. Many of these are for ioctl numbers. ioctl numbers are usually so large that they have type unsigned, but they are passed to ioctl devswitch functions as ints. 4.4lite2 and NetBSD use u_longs. Bruce