svn commit: r340885 - head/sys/dev/sfxge/common
Andrew Rybchenko
arybchik at FreeBSD.org
Sat Nov 24 16:29:38 UTC 2018
Author: arybchik
Date: Sat Nov 24 16:29:35 2018
New Revision: 340885
URL: https://svnweb.freebsd.org/changeset/base/340885
Log:
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.
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D18119
Modified:
head/sys/dev/sfxge/common/efx_bootcfg.c
Modified: head/sys/dev/sfxge/common/efx_bootcfg.c
==============================================================================
--- head/sys/dev/sfxge/common/efx_bootcfg.c Sat Nov 24 16:29:23 2018 (r340884)
+++ head/sys/dev/sfxge/common/efx_bootcfg.c Sat Nov 24 16:29:35 2018 (r340885)
@@ -361,7 +361,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-all
mailing list