PERFORCE change 145582 for review

Ed Schouten ed at FreeBSD.org
Mon Jul 21 22:57:46 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=145582

Change 145582 by ed at ed_dull on 2008/07/21 22:57:04

	Fix a small compilation problem: use %zu to print size_t.

Affected files ...

.. //depot/projects/mpsafetty/sys/dev/usb/ucom.c#2 edit

Differences ...

==== //depot/projects/mpsafetty/sys/dev/usb/ucom.c#2 (text+ko) ====

@@ -588,7 +588,7 @@
 		return;
 	}
 
-	DPRINTF(("ucomtty_outwakeup: %d chars\n", cnt));
+	DPRINTF(("ucomtty_outwakeup: %zu chars\n", cnt));
 	usbd_setup_xfer(sc->sc_oxfer, sc->sc_bulkout_pipe,
 			(usbd_private_handle)sc, sc->sc_obuf, cnt,
 			USBD_NO_COPY, USBD_NO_TIMEOUT, ucomwritecb);


More information about the p4-projects mailing list