Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Jul 2008 22:57:45 GMT
From:      Ed Schouten <ed@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 145582 for review
Message-ID:  <200807212257.m6LMvjlC002615@repoman.freebsd.org>

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

Change 145582 by ed@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);



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