Date: Sun, 23 Sep 2007 17:38:18 GMT From: Hans Petter Selasky <hselasky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 126753 for review Message-ID: <200709231738.l8NHcILd011886@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=126753 Change 126753 by hselasky@hselasky_laptop001 on 2007/09/23 17:37:46 - compile fixes - fix data length type - fix a variable typo Affected files ... .. //depot/projects/usb/src/sys/dev/usb/ucycom.c#15 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/ucycom.c#15 (text+ko) ==== @@ -215,7 +215,7 @@ struct usbd_interface *iface; void *urd_ptr = NULL; int32_t error; - int32_t urd_len; + uint16_t urd_len; if (sc == NULL) { return ENOMEM; @@ -443,7 +443,7 @@ usbd_copy_in(xfer->frbuffers + 1, 0, data, offset); xfer->frlengths[0] = sizeof(req); - xfer->frlenghts[1] = sc->sc_olen; + xfer->frlengths[1] = sc->sc_olen; usbd_start_hardware(xfer); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200709231738.l8NHcILd011886>