svn commit: r316170 - stable/10/sys/dev/xen/netfront
Ngie Cooper
ngie at FreeBSD.org
Wed Mar 29 17:11:42 UTC 2017
Author: ngie
Date: Wed Mar 29 17:11:41 2017
New Revision: 316170
URL: https://svnweb.freebsd.org/changeset/base/316170
Log:
Fix -Wformat issue with r316140, which broke i386/GENERIC
Since r316140 was a direct commit to ^/stable/10, this too is a direct commit
to ^/stable/10.
Reported by: Jenkins (FreeBSD-stable-10-i386-build job)
Tested with: amd64, i386
Sponsored by: Dell EMC Isilon
Modified:
stable/10/sys/dev/xen/netfront/netfront.c
Modified: stable/10/sys/dev/xen/netfront/netfront.c
==============================================================================
--- stable/10/sys/dev/xen/netfront/netfront.c Wed Mar 29 16:17:10 2017 (r316169)
+++ stable/10/sys/dev/xen/netfront/netfront.c Wed Mar 29 17:11:41 2017 (r316170)
@@ -837,7 +837,7 @@ netif_release_rx_bufs_copy(struct netfro
if (busy != 0)
device_printf(np->xbdev,
- "Unable to release %u of %u in use grant references out of %ld total.\n",
+ "Unable to release %u of %u in use grant references out of %zu total.\n",
busy, inuse, NET_RX_RING_SIZE);
XN_RX_UNLOCK(np);
More information about the svn-src-stable-10
mailing list