svn commit: r228232 - head/sys/dev/usb

Hans Petter Selasky hselasky at FreeBSD.org
Sat Dec 3 14:54:45 UTC 2011


Author: hselasky
Date: Sat Dec  3 14:54:44 2011
New Revision: 228232
URL: http://svn.freebsd.org/changeset/base/228232

Log:
  Fix a compile warning with clang.
  
  Reported by:	arundel @
  MFC after:	3 days

Modified:
  head/sys/dev/usb/usb_msctest.c

Modified: head/sys/dev/usb/usb_msctest.c
==============================================================================
--- head/sys/dev/usb/usb_msctest.c	Sat Dec  3 14:44:34 2011	(r228231)
+++ head/sys/dev/usb/usb_msctest.c	Sat Dec  3 14:54:44 2011	(r228232)
@@ -477,7 +477,7 @@ bbb_command_start(struct bbb_transfer *s
 	sc->cmd_len = cmd_len;
 	memset(&sc->cbw.CBWCDB, 0, sizeof(sc->cbw.CBWCDB));
 	memcpy(&sc->cbw.CBWCDB, cmd_ptr, cmd_len);
-	DPRINTFN(1, "SCSI cmd = %*D\n", (int)cmd_len, &sc->cbw.CBWCDB, ":");
+	DPRINTFN(1, "SCSI cmd = %*D\n", (int)cmd_len, (char *)sc->cbw.CBWCDB, ":");
 
 	mtx_lock(&sc->mtx);
 	usbd_transfer_start(sc->xfer[sc->state]);


More information about the svn-src-all mailing list