Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 2010 17:56:48 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 172784 for review
Message-ID:  <201001081756.o08HumIo002454@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/chv.cgi?CH=172784

Change 172784 by hselasky@hselasky_laptop001 on 2010/01/08 17:56:39

	
	USB core:
		- fix compile warning on AMD64.

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb/usb_msctest.c#14 edit

Differences ...

==== //depot/projects/usb/src/sys/dev/usb/usb_msctest.c#14 (text+ko) ====

@@ -468,7 +468,7 @@
 	sc->cmd_len = cmd_len;
 	bzero(&sc->cbw.CBWCDB, sizeof(sc->cbw.CBWCDB));
 	bcopy(cmd_ptr, &sc->cbw.CBWCDB, cmd_len);
-	DPRINTFN(1, "SCSI cmd = %*D\n", cmd_len, &sc->cbw.CBWCDB, ":");
+	DPRINTFN(1, "SCSI cmd = %*D\n", (int)cmd_len, &sc->cbw.CBWCDB, ":");
 
 	mtx_lock(&sc->mtx);
 	usbd_transfer_start(sc->xfer[sc->state]);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001081756.o08HumIo002454>