svn commit: r300739 - head/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Thu May 26 13:19:46 UTC 2016


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


More information about the svn-src-head mailing list