diff options
author | arybchik <arybchik@FreeBSD.org> | 2016-06-17 08:56:47 +0000 |
---|---|---|
committer | arybchik <arybchik@FreeBSD.org> | 2016-06-17 08:56:47 +0000 |
commit | 3377d439898829adbd92614b61ce22136aa46103 (patch) | |
tree | 426878751e27b23f3ba657578495b6b205c5bf20 | |
parent | 29789adab9c0f03b6246112089b4e43bb1fdac69 (diff) | |
download | FreeBSD-src-3377d439898829adbd92614b61ce22136aa46103.zip FreeBSD-src-3377d439898829adbd92614b61ce22136aa46103.tar.gz |
MFC r301125
sfxge(4): cleanup: add missing space after if keyword
Sponsored by: Solarflare Communications, Inc.
-rw-r--r-- | sys/dev/sfxge/common/efx_lic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sfxge/common/efx_lic.c b/sys/dev/sfxge/common/efx_lic.c index 127ead95..21c4b85 100644 --- a/sys/dev/sfxge/common/efx_lic.c +++ b/sys/dev/sfxge/common/efx_lic.c @@ -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) { |