diff options
| author | Pranav Sharma <[email protected]> | 2022-11-28 15:56:35 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-28 15:56:35 -0800 |
| commit | 37d18d3f0eec68d1804b9e324a6ea0feab6d6185 (patch) | |
| tree | 29f5d9c7658bf7ff2b23f0444e03ed0a026f52a0 /network/wlan/WDI/COMMON/ApEngine.c | |
| parent | d3cf84a5118cd2aec491aaa4e4d0b9a57eb384ba (diff) | |
[network/wlan/WDI] Fix Mismatched Type Comparisons (#715)
* fix wider type comparisons
* fix resulting mismatched types
Diffstat (limited to 'network/wlan/WDI/COMMON/ApEngine.c')
| -rw-r--r-- | network/wlan/WDI/COMMON/ApEngine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/wlan/WDI/COMMON/ApEngine.c b/network/wlan/WDI/COMMON/ApEngine.c index 1fe215eb..b4151482 100644 --- a/network/wlan/WDI/COMMON/ApEngine.c +++ b/network/wlan/WDI/COMMON/ApEngine.c @@ -3667,7 +3667,7 @@ AP_CheckRSNIE( } if(RSNIE.Length != 0){ - u1Byte count; + u2Byte count; //2004/09/15, kcwu, parse WPA2 packet if(pEntry->perSTAKeyInfo.SecLvl == RT_SEC_LVL_WPA) |
