From owner-cvs-sys Sat Sep 14 00:12:24 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA11993 for cvs-sys-outgoing; Sat, 14 Sep 1996 00:12:24 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA11956; Sat, 14 Sep 1996 00:12:06 -0700 (PDT) Date: Sat, 14 Sep 1996 00:12:06 -0700 (PDT) From: Bruce Evans Message-Id: <199609140712.AAA11956@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/boot/biosboot boot.c table.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/09/14 00:12:05 Modified: sys/i386/boot/biosboot boot.c table.c Log: Potentially saved a whole 4 bytes and reduced bogusness by eliminating the pointer to the string "/kernel". This pointer was once only statically to once save space, but it has had to be dynamically initialized for some time, so the static initialization just wastes space. The string gets moved to the text section, so the actual savings may be negative due to padding. Revision Changes Path 1.59 +3 -2 src/sys/i386/boot/biosboot/boot.c 1.13 +1 -3 src/sys/i386/boot/biosboot/table.c