Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jun 2016 17:14:28 +0000 (UTC)
From:      Andrew Rybchenko <arybchik@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r301391 - stable/10/sys/dev/sfxge/common
Message-ID:  <201606041714.u54HESBZ055799@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arybchik
Date: Sat Jun  4 17:14:28 2016
New Revision: 301391
URL: https://svnweb.freebsd.org/changeset/base/301391

Log:
  MFC r300739
  
  sfxge(4): correct parenthesis location in if coundition
  
  Found by lint on illumos.
  
  Submitted by:   Garrett D'Amore <garrett at damore.org>
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  stable/10/sys/dev/sfxge/common/ef10_filter.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sfxge/common/ef10_filter.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_filter.c	Sat Jun  4 17:12:28 2016	(r301390)
+++ stable/10/sys/dev/sfxge/common/ef10_filter.c	Sat Jun  4 17:14:28 2016	(r301391)
@@ -970,7 +970,7 @@ ef10_filter_supported_filters(
 {
 	efx_rc_t rc;
 
-	if ((rc = efx_mcdi_get_parser_disp_info(enp, list, length) != 0))
+	if ((rc = efx_mcdi_get_parser_disp_info(enp, list, length)) != 0)
 		goto fail1;
 
 	return (0);



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