From 6f46bf604d561fc52a7fa5608f7b5dd7d0ce6706 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 08:57:28 +0000 Subject: [PATCH] Fix KASSERT syntax error. --- sys/dev/ti/if_ti.c | 2 +- sys/pci/if_ti.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 4513a18c96f..3e1da1562cf 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -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; diff --git a/sys/pci/if_ti.c b/sys/pci/if_ti.c index 4513a18c96f..3e1da1562cf 100644 --- a/sys/pci/if_ti.c +++ b/sys/pci/if_ti.c @@ -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;