Fix KASSERT syntax error.

This commit is contained in:
Poul-Henning Kamp 2003-04-01 08:57:28 +00:00
parent 09139a4537
commit 6f46bf604d
2 changed files with 2 additions and 2 deletions

View File

@ -2375,7 +2375,7 @@ ti_detach(dev)
return EBUSY;
sc = device_get_softc(dev);
KASSERT(mtx_initialized(&sc->ti_mtx), "ti mutex not initialized");
KASSERT(mtx_initialized(&sc->ti_mtx), ("ti mutex not initialized"));
TI_LOCK(sc);
ifp = &sc->arpcom.ac_if;

View File

@ -2375,7 +2375,7 @@ ti_detach(dev)
return EBUSY;
sc = device_get_softc(dev);
KASSERT(mtx_initialized(&sc->ti_mtx), "ti mutex not initialized");
KASSERT(mtx_initialized(&sc->ti_mtx), ("ti mutex not initialized"));
TI_LOCK(sc);
ifp = &sc->arpcom.ac_if;