diff options
author | John Baldwin <jhb@FreeBSD.org> | 2003-03-31 20:22:00 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2003-03-31 20:22:00 +0000 |
commit | 59f47d29b7b5f0772d194cb018775f8a4b55444b (patch) | |
tree | 4c4dca2b0899c6d629f03e914ed7e3e71e575bca /sys/dev/dc | |
parent | c82feacd9bfd46e51ed2174796ea10fdc02c3121 (diff) | |
download | src-59f47d29b7b5f0772d194cb018775f8a4b55444b.tar.gz src-59f47d29b7b5f0772d194cb018775f8a4b55444b.zip |
Add missing ()'s so that these drivers all compile again.
Noticed by: jake
Tested on: i386 (compile)
Notes
Notes:
svn path=/head/; revision=112880
Diffstat (limited to 'sys/dev/dc')
-rw-r--r-- | sys/dev/dc/if_dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dc/if_dc.c b/sys/dev/dc/if_dc.c index 61672ef6c454..1fb594c0caa9 100644 --- a/sys/dev/dc/if_dc.c +++ b/sys/dev/dc/if_dc.c @@ -2319,7 +2319,7 @@ dc_detach(dev) struct dc_mediainfo *m; sc = device_get_softc(dev); - KASSERT(mtx_initialized(&sc->dc_mtx), "dc mutex not initialized"); + KASSERT(mtx_initialized(&sc->dc_mtx), ("dc mutex not initialized")); DC_LOCK(sc); ifp = &sc->arpcom.ac_if; |