From c09d9910b1379af9ea0d3de4ec4d90fc1ed2ecac Mon Sep 17 00:00:00 2001 From: Tom Molenhouse Date: Mon, 18 Jul 2022 12:39:50 -0700 Subject: [network\ndis\ndisprot] Virtual Miniport: Fix UINT8 comparison with ULONG (#754) fix UINT8 comparison with ULONG --- network/ndis/netvmini/6x/rssv2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.3.1