1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00:00

Add suggested parens around truth value.

This commit is contained in:
Warner Losh 2001-05-31 04:37:17 +00:00
parent fae6989e0c
commit 56578b06a0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=77512

View File

@ -363,7 +363,7 @@ card_inserted(struct slot *sp)
}
if ((sp->config = assign_driver(cp)) == NULL)
return;
if (err = assign_io(sp)) {
if ((err = assign_io(sp))) {
char *reason;
switch (err) {