From owner-cvs-sys Sun Jul 12 13:27:30 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA09534 for cvs-sys-outgoing; Sun, 12 Jul 1998 13:27:30 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA09471; Sun, 12 Jul 1998 13:27:10 -0700 (PDT) (envelope-from se@FreeBSD.org) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA04230; Sun, 12 Jul 1998 13:26:48 -0700 (PDT) Date: Sun, 12 Jul 1998 13:26:48 -0700 (PDT) Message-Id: <199807122026.NAA04230@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci ncr.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk se 1998/07/12 13:26:48 PDT Modified files: sys/pci ncr.c Log: Fix size of time stamps (had been time_t before the variable "time" was hidden). Now "ticks" are used, which are 4 byte, not 8 byte in size. The size mismatch did not matter due to sufficient padding at the end of the structure that holds time stamps (there is an unused member). The fix suggested by Bruce Evans used "sizeof (ticks_t)", but I prefer to use "sizeof ticks", and didn't seem to object in his last mail on this topic. Submitted by: bde Revision Changes Path 1.120 +29 -26 src/sys/pci/ncr.c