From owner-svn-src-stable-10@freebsd.org Wed Mar 29 17:11:42 2017 Return-Path: Delivered-To: svn-src-stable-10@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74F38D24D4E; Wed, 29 Mar 2017 17:11:42 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 442B865B25; Wed, 29 Mar 2017 17:11:42 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2THBfMY081601; Wed, 29 Mar 2017 17:11:41 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2THBfvH081600; Wed, 29 Mar 2017 17:11:41 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201703291711.v2THBfvH081600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Wed, 29 Mar 2017 17:11:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r316170 - stable/10/sys/dev/xen/netfront X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Mar 2017 17:11:42 -0000 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);