Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Dec 2018 07:02:35 +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-11@freebsd.org
Subject:   svn commit: r342427 - stable/11/sys/dev/sfxge/common
Message-ID:  <201812250702.wBP72ZNv034725@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 	}



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