From owner-svn-src-all@FreeBSD.ORG Thu Sep 10 21:16:26 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FB20106568F; Thu, 10 Sep 2009 21:16:26 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4F0DF8FC17; Thu, 10 Sep 2009 21:16:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n8ALGQZx031397; Thu, 10 Sep 2009 21:16:26 GMT (envelope-from jfv@svn.freebsd.org) Received: (from jfv@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8ALGQ64031395; Thu, 10 Sep 2009 21:16:26 GMT (envelope-from jfv@svn.freebsd.org) Message-Id: <200909102116.n8ALGQ64031395@svn.freebsd.org> From: Jack F Vogel Date: Thu, 10 Sep 2009 21:16:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r197079 - head/sys/dev/e1000 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 21:16:26 -0000 Author: jfv Date: Thu Sep 10 21:16:26 2009 New Revision: 197079 URL: http://svn.freebsd.org/changeset/base/197079 Log: Fix build issue with last commit. Modified: head/sys/dev/e1000/if_igb.c Modified: head/sys/dev/e1000/if_igb.c ============================================================================== --- head/sys/dev/e1000/if_igb.c Thu Sep 10 21:14:55 2009 (r197078) +++ head/sys/dev/e1000/if_igb.c Thu Sep 10 21:16:26 2009 (r197079) @@ -854,7 +854,7 @@ igb_mq_start_locked(struct ifnet *ifp, s /* If nothing queued go right to xmit */ if (drbr_empty(ifp, txr->br)) { - if (err = igb_xmit(txr, &m)) { + if ((err = igb_xmit(txr, &m)) != 0) { if (m != NULL) err = drbr_enqueue(ifp, txr->br, m); return (err); @@ -881,7 +881,7 @@ process: next = drbr_dequeue(ifp, txr->br); if (next == NULL) break; - if (err = igb_xmit(txr, &next)) { + if ((err = igb_xmit(txr, &next)) != 0) { if (next != NULL) err = drbr_enqueue(ifp, txr->br, next); break;