From 64470e4c969ff44a604540459dfcb46bbcd82482 Mon Sep 17 00:00:00 2001 From: Nick Hibma Date: Sat, 29 Jan 2000 16:25:55 +0000 Subject: [PATCH] Remove a warning from LINT --- sys/dev/usb/ohci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 405686547ca..9591726a121 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -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"));