svn commit: r342427 - stable/11/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Tue Dec 25 07:02:36 UTC 2018


Author: arybchik
Date: Tue Dec 25 07:02:35 2018
New Revision: 342427
URL: https://svnweb.freebsd.org/changeset/base/342427

Log:
  MFC r340885
  
  sfxge(4): fix warnings from VS2015 C compiler (C4310)
  
  Fix level 4 warning
  "C4310: cast truncates constant value";
  no functional changes.
  
  Submitted by:   Andrew Lee <alee at solarflare.com>
  Sponsored by:   Solarflare Communications, Inc.
  Differential Revision:  https://reviews.freebsd.org/D18119

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

Modified: stable/11/sys/dev/sfxge/common/efx_bootcfg.c
==============================================================================
--- stable/11/sys/dev/sfxge/common/efx_bootcfg.c	Tue Dec 25 07:02:08 2018	(r342426)
+++ stable/11/sys/dev/sfxge/common/efx_bootcfg.c	Tue Dec 25 07:02:35 2018	(r342427)
@@ -359,7 +359,7 @@ efx_bootcfg_read(
 	rc = efx_bootcfg_verify(enp, (caddr_t)payload, sector_length,
 	    &used_bytes);
 	if (rc != 0 || used_bytes == 0) {
-		payload[0] = (uint8_t)~DHCP_END;
+		payload[0] = (uint8_t)(~DHCP_END & 0xff);
 		payload[1] = DHCP_END;
 		used_bytes = 2;
 	}


More information about the svn-src-stable mailing list