svn commit: r312924 - head/sys/net

Sean Bruno sbruno at FreeBSD.org
Sat Jan 28 15:44:15 UTC 2017


Author: sbruno
Date: Sat Jan 28 15:44:14 2017
New Revision: 312924
URL: https://svnweb.freebsd.org/changeset/base/312924

Log:
  Fix i386 compile failure by moving needed closing parenthesis out of
  conditional block.
  
  Submitted by:   hiren
  Reported by:    cy

Modified:
  head/sys/net/iflib.c

Modified: head/sys/net/iflib.c
==============================================================================
--- head/sys/net/iflib.c	Sat Jan 28 15:43:19 2017	(r312923)
+++ head/sys/net/iflib.c	Sat Jan 28 15:44:14 2017	(r312924)
@@ -1536,8 +1536,8 @@ iflib_rxsd_alloc(iflib_rxq_t rxq)
 				goto fail;
 			}
 		}
-	}
 #endif
+	}
 	return (0);
 
 fail:


More information about the svn-src-head mailing list