Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jan 2017 15:44:14 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r312924 - head/sys/net
Message-ID:  <201701281544.v0SFiExE047096@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



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