diff options
| author | Tom Molenhouse <[email protected]> | 2022-07-18 12:39:50 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-18 12:39:50 -0700 |
| commit | c09d9910b1379af9ea0d3de4ec4d90fc1ed2ecac (patch) | |
| tree | 93736f139a180f6bd6f4683ee65b55ce7782d881 | |
| parent | 5f773dd71eacded0e0bf0b6ab223beb96de21a11 (diff) | |
[network\ndis\ndisprot] Virtual Miniport: Fix UINT8 comparison with ULONG (#754)
fix UINT8 comparison with ULONG
| -rw-r--r-- | network/ndis/netvmini/6x/rssv2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/ndis/netvmini/6x/rssv2.c b/network/ndis/netvmini/6x/rssv2.c index 1f8efb0e..35ad6fb8 100644 --- a/network/ndis/netvmini/6x/rssv2.c +++ b/network/ndis/netvmini/6x/rssv2.c @@ -210,7 +210,7 @@ Return Value: --*/ { - UINT8 index; + ULONG index; PNDIS_RSS_PROCESSOR processor; for (index = 0; |
