mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Add missing paren so that it now compiles.
This commit is contained in:
parent
db703a94ed
commit
e7988dea10
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=980
2 changed files with 4 additions and 4 deletions
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue