summaryrefslogtreecommitdiffstats
path: root/sys/pci/pci.c
diff options
context:
space:
mode:
authorse <se@FreeBSD.org>1997-03-25 19:12:08 +0000
committerse <se@FreeBSD.org>1997-03-25 19:12:08 +0000
commit5228fbcf8bc7691863142488b33cd5ffe1fe17b6 (patch)
tree2f6e4b92feb0a472136d4ef3e82b3d747b73ce43 /sys/pci/pci.c
parent505530044a9358d2980baf3760d385e0e1ebf4fa (diff)
downloadFreeBSD-src-5228fbcf8bc7691863142488b33cd5ffe1fe17b6.zip
FreeBSD-src-5228fbcf8bc7691863142488b33cd5ffe1fe17b6.tar.gz
Fix printing of map sizes: large numbers got a negative sign before.
Diffstat (limited to 'sys/pci/pci.c')
-rw-r--r--sys/pci/pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/pci.c b/sys/pci/pci.c
index f6f13d8..531f4aa 100644
--- a/sys/pci/pci.c
+++ b/sys/pci/pci.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pci.c,v 1.66 1997/02/22 09:44:11 peter Exp $
+** $Id: pci.c,v 1.67 1997/03/25 19:01:46 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@@ -814,12 +814,12 @@ pci_bus_config (void)
#ifndef PCI_QUIET
if (bootverbose) {
if (pcicb->pcicb_mamount)
- printf ("%s%d: uses %d bytes of memory from %x upto %x.\n",
+ printf ("%s%d: uses %ud bytes of memory from %x upto %x.\n",
pcibus->pb_name, bus_no,
pcicb->pcicb_mamount,
pcicb->pcicb_mfrom, pcicb->pcicb_mupto);
if (pcicb->pcicb_pamount)
- printf ("%s%d: uses %d bytes of I/O space from %x upto %x.\n",
+ printf ("%s%d: uses %ud bytes of I/O space from %x upto %x.\n",
pcibus->pb_name, bus_no,
pcicb->pcicb_pamount,
pcicb->pcicb_pfrom, pcicb->pcicb_pupto);
OpenPOWER on IntegriCloud