diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-06-13 08:25:26 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-06-13 08:25:26 +0000 |
commit | 7a10618962a42d1671f180e640c111d931535cdf (patch) | |
tree | e30c60d0d4cf688c4262ce181328b394598434b2 /sys/dev | |
parent | 4e74bda32bc9fc6b85dccf35b7965d9762bfbcaf (diff) |
typo spotted by Mike Pechkin <mpech@prosoft.org.lv>
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pci_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pci_map.c b/sys/dev/pci/pci_map.c index 242de880c92..6e383b0e7fc 100644 --- a/sys/dev/pci/pci_map.c +++ b/sys/dev/pci/pci_map.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_map.c,v 1.5 2001/06/12 15:40:32 niklas Exp $ */ +/* $OpenBSD: pci_map.c,v 1.6 2001/06/13 08:25:25 niklas Exp $ */ /* $NetBSD: pci_map.c,v 1.7 2000/05/10 16:58:42 thorpej Exp $ */ /*- @@ -313,7 +313,7 @@ pci_mapreg_map(pa, reg, type, busflags, tagp, handlep, basep, sizep, maxsize) if (maxsize != 0 && size > maxsize) { #ifdef DEBUG printf("pci_mapreg_map: limited PCI mapping from %lx to %lx\n", - (u_long)size, (u_long)maxsize): + (u_long)size, (u_long)maxsize); #endif size = maxsize; } |