diff options
| author | Srinivas Girigowda <sgirigow@qca.qualcomm.com> | 2014-06-17 15:49:30 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-06-18 21:12:47 -0700 |
| commit | 271395b6eef22dec77d1d8462647bbd22bb07eec (patch) | |
| tree | cccc65c2cda4a46ed70660b5733a2cc15ef45dbf | |
| parent | 008b1755a3df79ba1571f2f8cf44b1040ae6a03e (diff) | |
qcacld: Fix compilation error
Fix compilation error
Change-Id: I91b539f7cd73c536d704402c0efd69ce3b30f84c
CRs-Fixed: 681547
| -rwxr-xr-x | CORE/HDD/src/wlan_hdd_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c index 055e2c09caa1..78ed1a5eaaf6 100755 --- a/CORE/HDD/src/wlan_hdd_main.c +++ b/CORE/HDD/src/wlan_hdd_main.c @@ -13519,7 +13519,7 @@ void wlan_hdd_restart_sap(hdd_adapter_t *ap_pAdapter) } } clear_bit(SOFTAP_BSS_STARTED, &ap_pAdapter->event_flags); - wlan_hdd_decr_active_session(pHddCtx, pHostapdAdapter->device_mode); + wlan_hdd_decr_active_session(pHddCtx, ap_pAdapter->device_mode); hddLog(LOGE,FL("%s: SAP Stop Success"), __func__); if (WLANSAP_StartBss( @@ -13542,7 +13542,7 @@ void wlan_hdd_restart_sap(hdd_adapter_t *ap_pAdapter) } hddLog(LOGE,FL("%s: SAP Start Success"), __func__); set_bit(SOFTAP_BSS_STARTED, &ap_pAdapter->event_flags); - wlan_hdd_incr_active_session(pHddCtx, ap_pAdapter-->device_mode); + wlan_hdd_incr_active_session(pHddCtx, ap_pAdapter->device_mode); pHostapdState->bCommit = TRUE; } end: |
