svn commit: r342428 - stable/11/sys/dev/sfxge/common
Andrew Rybchenko
arybchik at FreeBSD.org
Tue Dec 25 07:03:02 UTC 2018
Author: arybchik
Date: Tue Dec 25 07:03:01 2018
New Revision: 342428
URL: https://svnweb.freebsd.org/changeset/base/342428
Log:
MFC r340886
sfxge(4): fix warnings from VS2015 C compiler (C4244)
Fix level 4 warning
"C4244: '+=': conversion from 'unsigned int' to 'uint16_t', possible
loss
of data"; no functional changes.
Submitted by: Andrew Lee <alee at solarflare.com>
Sponsored by: Solarflare Communications, Inc.
Differential Revision: https://reviews.freebsd.org/D18120
Modified:
stable/11/sys/dev/sfxge/common/efx_vpd.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/sfxge/common/efx_vpd.c
==============================================================================
--- stable/11/sys/dev/sfxge/common/efx_vpd.c Tue Dec 25 07:02:35 2018 (r342427)
+++ stable/11/sys/dev/sfxge/common/efx_vpd.c Tue Dec 25 07:03:01 2018 (r342428)
@@ -931,7 +931,7 @@ efx_vpd_hunk_set(
}
/* Modify tag length (large resource type) */
- taglen += (dest - source);
+ taglen += (uint16_t)(dest - source);
EFX_POPULATE_WORD_1(word, EFX_WORD_0, taglen);
data[offset - 2] = EFX_WORD_FIELD(word, EFX_BYTE_0);
data[offset - 1] = EFX_WORD_FIELD(word, EFX_BYTE_1);
More information about the svn-src-stable-11
mailing list