diff options
author | 2004-06-24 09:07:39 +0000 | |
---|---|---|
committer | 2004-06-24 09:07:39 +0000 | |
commit | 1afc0e0fef23ddf8451c05f2c7c037b18f07c811 (patch) | |
tree | c2f0824fac44ef375e9bf8628ca60f855673631b | |
parent | missing Xr (diff) | |
download | wireguard-openbsd-1afc0e0fef23ddf8451c05f2c7c037b18f07c811.tar.xz wireguard-openbsd-1afc0e0fef23ddf8451c05f2c7c037b18f07c811.zip |
ultra minor KNF
-rw-r--r-- | sys/dev/ic/adwlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/adwlib.c b/sys/dev/ic/adwlib.c index 6e3570da2de..7293715b21c 100644 --- a/sys/dev/ic/adwlib.c +++ b/sys/dev/ic/adwlib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adwlib.c,v 1.19 2004/01/09 21:32:23 brad Exp $ */ +/* $OpenBSD: adwlib.c,v 1.20 2004/06/24 09:07:39 itojun Exp $ */ /* $NetBSD: adwlib.c,v 1.20 2000/07/04 04:17:03 itojun Exp $ */ /* @@ -2085,7 +2085,7 @@ ADW_SOFTC *sc; free_carrp = sc->irq_sp; sc->irq_sp = ADW_CARRIER_VADDR(sc, ADW_GET_CARRP(irq_next_pa)); - free_carrp->next_ba = (sc->carr_freelist == NULL)? NULL + free_carrp->next_ba = (sc->carr_freelist == NULL) ? NULL : sc->carr_freelist->carr_ba; sc->carr_freelist = free_carrp; sc->carr_pending_cnt--; |