Date: Sun, 12 Jul 1998 13:26:48 -0700 (PDT) From: Stefan Esser <se@FreeBSD.ORG> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci ncr.c Message-ID: <199807122026.NAA04230@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199807122026.NAA04230>