svn commit: r301391 - stable/10/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Sat Jun 4 17:14:30 UTC 2016


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);


More information about the svn-src-stable mailing list