svn commit: r280433 - head/sys/dev/sfxge

Andrew Rybchenko arybchik at FreeBSD.org
Tue Mar 24 11:33:35 UTC 2015


Author: arybchik
Date: Tue Mar 24 11:33:34 2015
New Revision: 280433
URL: https://svnweb.freebsd.org/changeset/base/280433

Log:
  sfxge: cleanup: fix index variable type to match upper boundary type
  
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  head/sys/dev/sfxge/sfxge_tx.c

Modified: head/sys/dev/sfxge/sfxge_tx.c
==============================================================================
--- head/sys/dev/sfxge/sfxge_tx.c	Tue Mar 24 11:25:19 2015	(r280432)
+++ head/sys/dev/sfxge/sfxge_tx.c	Tue Mar 24 11:33:34 2015	(r280433)
@@ -667,7 +667,7 @@ void
 sfxge_if_qflush(struct ifnet *ifp)
 {
 	struct sfxge_softc *sc;
-	int i;
+	unsigned int i;
 
 	sc = ifp->if_softc;
 


More information about the svn-src-head mailing list