Remove a warning from LINT

This commit is contained in:
n_hibma 2000-01-29 16:25:55 +00:00
parent dfabf6fde1
commit e4f61c8bcf

View File

@ -1577,7 +1577,7 @@ ohci_hash_find_td(sc, a)
/* if these are present they should be masked out at an earlier
* stage.
*/
KASSERT(a&LE(OHCI_TAILMASK) == 0, ("%s: 0x%b has lower bits set\n",
KASSERT((a&LE(OHCI_TAILMASK)) == 0, ("%s: 0x%b has lower bits set\n",
USBDEVNAME(sc->sc_bus.bdev),
(int) a, "\20\1HALT\2TOGGLE"));