summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinit Deshpande <vinitd@google.com>2015-12-28 19:58:54 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-12-28 19:58:54 +0000
commit296cc55f72c1a68b8c7d70058ffe003132a79b35 (patch)
tree1e8fb51dbdff627d25806664ca5459e9c81aab71
parent410c95ef085f6f35ad39bdc552c308ad292db01e (diff)
parentd67d125603c2beb1dad13e68774677d3c47cb760 (diff)
downloadhardware_replicant_wlan-296cc55f72c1a68b8c7d70058ffe003132a79b35.tar.gz
hardware_replicant_wlan-296cc55f72c1a68b8c7d70058ffe003132a79b35.tar.bz2
hardware_replicant_wlan-296cc55f72c1a68b8c7d70058ffe003132a79b35.zip
am: d67d125603 * commit 'd67d125603c2beb1dad13e68774677d3c47cb760': Use unsigned int to fix wrong full scan bucket calculation
-rw-r--r--bcmdhd/wifi_hal/gscan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bcmdhd/wifi_hal/gscan.cpp b/bcmdhd/wifi_hal/gscan.cpp
index 418537b..b39395a 100644
--- a/bcmdhd/wifi_hal/gscan.cpp
+++ b/bcmdhd/wifi_hal/gscan.cpp
@@ -449,7 +449,7 @@ class ScanCommand : public WifiCommand
wifi_scan_cmd_params *mParams;
wifi_scan_result_handler mHandler;
static unsigned mGlobalFullScanBuckets;
- bool mLocalFullScanBuckets;
+ unsigned mLocalFullScanBuckets;
public:
ScanCommand(wifi_interface_handle iface, int id, wifi_scan_cmd_params *params,
wifi_scan_result_handler handler)