mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-18 18:29:29 +01:00
scan: Fix warning
CC src/scan.o src/scan.c: In function ‘scan_bss_compute_rank’: src/scan.c:1048:4: warning: this decimal constant is unsigned only in ISO C90 factor = factor * data_rate / 2340000000 +
This commit is contained in:
parent
5c9e6b255f
commit
6ecc3a20b8
@ -1045,7 +1045,7 @@ static void scan_bss_compute_rank(struct scan_bss *bss)
|
||||
/*
|
||||
* Maximum rate is 2340Mbps (VHT)
|
||||
*/
|
||||
factor = factor * data_rate / 2340000000 +
|
||||
factor = factor * data_rate / 2340000000U +
|
||||
RANK_MIN_SUPPORTED_RATE_FACTOR;
|
||||
rank *= factor;
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user