diff options
author | jhb <jhb@FreeBSD.org> | 2003-03-31 20:22:00 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-03-31 20:22:00 +0000 |
commit | 35e71f4a050af9100a931d737080b2818efa8c63 (patch) | |
tree | 4c4dca2b0899c6d629f03e914ed7e3e71e575bca /sys/dev/sf | |
parent | 28fd4ae8c51a5b1c5d1f3efaede95c3588e8eca9 (diff) | |
download | FreeBSD-src-35e71f4a050af9100a931d737080b2818efa8c63.zip FreeBSD-src-35e71f4a050af9100a931d737080b2818efa8c63.tar.gz |
Add missing ()'s so that these drivers all compile again.
Noticed by: jake
Tested on: i386 (compile)
Diffstat (limited to 'sys/dev/sf')
-rw-r--r-- | sys/dev/sf/if_sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index 288ca7e..bacce60 100644 --- a/sys/dev/sf/if_sf.c +++ b/sys/dev/sf/if_sf.c @@ -835,7 +835,7 @@ sf_detach(dev) struct ifnet *ifp; sc = device_get_softc(dev); - KASSERT(mtx_initialized(&sc->sf_mtx), "sf mutex not initialized"); + KASSERT(mtx_initialized(&sc->sf_mtx), ("sf mutex not initialized")); SF_LOCK(sc); ifp = &sc->arpcom.ac_if; |