mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix KASSERT syntax error.
This commit is contained in:
parent
09139a4537
commit
6f46bf604d
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue