Adding missing () in a KASSERT format string.

Submitted by:	brandt@fokus.gmd.de
This commit is contained in:
scottl 2001-08-07 16:48:28 +00:00
parent 4345758876
commit ef322198c6

View File

@ -1299,7 +1299,7 @@ aac_sync_fib(struct aac_softc *sc, u_int32_t command, u_int32_t xferstate,
*/
if (data != NULL) {
KASSERT(datasize <= sizeof(fib->data),
"aac_sync_fib: datasize to large");
("aac_sync_fib: datasize to large"));
bcopy(data, fib->data, datasize);
fib->Header.XferState |= AAC_FIBSTATE_FROMHOST | AAC_FIBSTATE_NORM;
}