diff options
author | peter <peter@FreeBSD.org> | 2000-08-08 23:53:11 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-08-08 23:53:11 +0000 |
commit | d60fc89abd5887f7e9567a686de1e37322283f3a (patch) | |
tree | 146cf0a2581576777ec5d50a830834228b85810f /sys/dev/an/if_an.c | |
parent | 6ce50a0fefb71c542650ee7b9de7e8980edaa7a9 (diff) | |
download | FreeBSD-src-d60fc89abd5887f7e9567a686de1e37322283f3a.zip FreeBSD-src-d60fc89abd5887f7e9567a686de1e37322283f3a.tar.gz |
MF4: fix style(9) whitespace breakage.
Diffstat (limited to 'sys/dev/an/if_an.c')
-rw-r--r-- | sys/dev/an/if_an.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 2cce3bd..dc85125 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -975,7 +975,7 @@ static int an_ioctl(ifp, command, data) sc = ifp->if_softc; ifr = (struct ifreq *)data; - if(sc->an_gone) { + if (sc->an_gone) { error = ENODEV; goto out; } @@ -1037,8 +1037,8 @@ static int an_ioctl(ifp, command, data) error = copyout(&areq, ifr->ifr_data, sizeof(areq)); break; case SIOCSAIRONET: - if ((error = suser(p))) - goto out; + if ((error = suser(p))) + goto out; error = copyin(ifr->ifr_data, &areq, sizeof(areq)); if (error) break; |