Fix instance of AUE_BUFSZ that should have been AUE_CUTOFF.

This commit is contained in:
Bill Paul 2000-01-13 23:40:00 +00:00
parent 2a2d4405a2
commit e562c84330
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55938

View file

@ -884,7 +884,7 @@ static void aue_rxstart(ifp)
/* Setup new transfer. */
usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
c, mtod(c->aue_mbuf, char *), AUE_BUFSZ, USBD_SHORT_XFER_OK,
c, mtod(c->aue_mbuf, char *), AUE_CUTOFF, USBD_SHORT_XFER_OK,
USBD_NO_TIMEOUT, aue_rxeof);
usbd_transfer(c->aue_xfer);