From owner-cvs-sys Sat Sep 7 14:48:17 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA14190 for cvs-sys-outgoing; Sat, 7 Sep 1996 14:48:17 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA14143; Sat, 7 Sep 1996 14:47:58 -0700 (PDT) Date: Sat, 7 Sep 1996 14:47:58 -0700 (PDT) From: Bruce Evans Message-Id: <199609072147.OAA14143@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/09/07 14:47:57 Modified: sys/i386/isa syscons.c Log: Fixed another easy case of const poisoning in the kernel. Cosmetic. (A pointer to a const was misused to avoid loading loading the same value twice, but gcc does exactly the same optimization automatically. It can see that the value hasn't changed.) Revision Changes Path 1.167 +2 -2 src/sys/i386/isa/syscons.c