Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Jun 2016 08:56:47 +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: r301981 - stable/10/sys/dev/sfxge/common
Message-ID:  <201606170856.u5H8umeg011121@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arybchik
Date: Fri Jun 17 08:56:47 2016
New Revision: 301981
URL: https://svnweb.freebsd.org/changeset/base/301981

Log:
  MFC r301125
  
  sfxge(4): cleanup: add missing space after if keyword
  
  Sponsored by:   Solarflare Communications, Inc.

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

Modified: stable/10/sys/dev/sfxge/common/efx_lic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_lic.c	Fri Jun 17 08:56:01 2016	(r301980)
+++ stable/10/sys/dev/sfxge/common/efx_lic.c	Fri Jun 17 08:56:47 2016	(r301981)
@@ -506,7 +506,7 @@ efx_lic_v1v2_find_key(
 
 	_NOTE(ARGUNUSED(enp))
 
-	if((size_t)buffer_size - offset < EFX_LICENSE_V1V2_HEADER_LENGTH)
+	if ((size_t)buffer_size - offset < EFX_LICENSE_V1V2_HEADER_LENGTH)
 		goto fail1;
 
 	tlv_type = __LE_TO_CPU_16(((uint16_t*)&bufferp[offset])[0]);
@@ -548,7 +548,7 @@ efx_lic_v1v2_validate_key(
 	tlv_type = __LE_TO_CPU_16(((uint16_t*)keyp)[0]);
 	tlv_length = __LE_TO_CPU_16(((uint16_t*)keyp)[1]);
 
-	if(tlv_length > EFX_LICENSE_V1V2_PAYLOAD_LENGTH_MAX) {
+	if (tlv_length > EFX_LICENSE_V1V2_PAYLOAD_LENGTH_MAX) {
 		goto fail2;
 	}
 	if (tlv_type == 0) {



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