diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1994-01-17 05:49:20 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1994-01-17 05:49:20 +0000 |
commit | ebd78d05263f349ef009b13a910f6080cca5324d (patch) | |
tree | b46ec2c3ce3e202c15cdf716171d8b882399e75c /sys/amd64/isa | |
parent | 5d4e88d003622dc336d406c0370eaf2117875e9d (diff) | |
download | FreeBSD-src-ebd78d05263f349ef009b13a910f6080cca5324d.zip FreeBSD-src-ebd78d05263f349ef009b13a910f6080cca5324d.tar.gz |
Add missing paren so that it now compiles.
Diffstat (limited to 'sys/amd64/isa')
-rw-r--r-- | sys/amd64/isa/isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index b7adf55..f720870 100644 --- a/sys/amd64/isa/isa.c +++ b/sys/amd64/isa/isa.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa.c,v 1.11 1993/12/19 00:50:41 wollman Exp $ + * $Id: isa.c,v 1.12 1994/01/16 11:25:06 ats Exp $ */ /* @@ -293,7 +293,7 @@ config_isadev(isdp, mp) printf(" msize %d", isdp->id_msize); if (isdp->id_flags) printf(" flags 0x%x", isdp->id_flags); - if (isdp->id_iobase && isdp->id_iobase < 0x100)) + if (isdp->id_iobase && (isdp->id_iobase < 0x100)) printf(" on motherboard\n"); else printf(" on isa\n"); |