From owner-cvs-sys Sat Nov 16 18:44:04 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA19091 for cvs-sys-outgoing; Sat, 16 Nov 1996 18:44:04 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA19025; Sat, 16 Nov 1996 18:43:37 -0800 (PST) Date: Sat, 16 Nov 1996 18:43:37 -0800 (PST) From: Bill Fenner Message-Id: <199611170243.SAA19025@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/dev/vx if_vx.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk fenner 96/11/16 18:43:33 Branch: sys/dev/vx RELENG_2_1_0 Modified: sys/dev/vx if_vx.c Log: In C, variable declarations are illegal except at the beginning of a block, even if newer GCC lets you get away with it. Case labels do not begin a block, so I added a block around the code that requires the new variable. Revision Changes Path 1.1.2.2 +2 -0 src/sys/dev/vx/if_vx.c