From owner-cvs-sys Tue Mar 19 07:03:17 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA06415 for cvs-sys-outgoing; Tue, 19 Mar 1996 07:03:17 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA06388 Tue, 19 Mar 1996 07:03:04 -0800 (PST) Date: Tue, 19 Mar 1996 07:03:04 -0800 (PST) From: Bruce Evans Message-Id: <199603191503.HAA06388@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/kern imgact_aout.c imgact_gzip.c src/sys/i386/linux imgact_linux.c linux_misc.c src/sys/pci meteor.c pcivar.h ncr.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/03/19 07:03:04 Modified: sys/i386/linux imgact_linux.c linux_misc.c sys/kern imgact_aout.c imgact_gzip.c sys/pci meteor.c pcivar.h ncr.c Log: Fixed unsigned longs that should have been vm_offset_t. vm_offset_t is currently unsigned long but should probably be plain unsigned for i386's to match the choice of minimal types to represent for fixed-width types in Lite2. Anyway, it shouldn't be assumed to be unsigned long. I only fixed the type mismatches that were detected when I changed vm_offset_t to unsigned. Only pointer type mismatches were detected. Revision Changes Path 1.13 +5 -3 src/sys/i386/linux/imgact_linux.c 1.17 +5 -3 src/sys/i386/linux/linux_misc.c 1.25 +3 -2 src/sys/kern/imgact_aout.c 1.20 +2 -2 src/sys/kern/imgact_gzip.c 1.16 +1 -1 src/sys/pci/meteor.c 1.10 +2 -2 src/sys/pci/pcivar.h 1.68 +4 -3 src/sys/pci/ncr.c