Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 May 2016 13:19:45 +0000 (UTC)
From:      Andrew Rybchenko <arybchik@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r300739 - head/sys/dev/sfxge/common
Message-ID:  <201605261319.u4QDJjpv047785@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arybchik
Date: Thu May 26 13:19:44 2016
New Revision: 300739
URL: https://svnweb.freebsd.org/changeset/base/300739

Log:
  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.
  MFC after:      1 week

Modified:
  head/sys/dev/sfxge/common/ef10_filter.c

Modified: head/sys/dev/sfxge/common/ef10_filter.c
==============================================================================
--- head/sys/dev/sfxge/common/ef10_filter.c	Thu May 26 13:14:08 2016	(r300738)
+++ head/sys/dev/sfxge/common/ef10_filter.c	Thu May 26 13:19:44 2016	(r300739)
@@ -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?201605261319.u4QDJjpv047785>