diff options
| author | Jeff Johnson <jjohnson@qca.qualcomm.com> | 2014-01-16 14:54:05 -0800 |
|---|---|---|
| committer | Prakash Dhavali <pdhavali@qca.qualcomm.com> | 2014-01-29 12:06:36 -0800 |
| commit | e2b928be2422447b619eeb4fa655bc0fac13e947 (patch) | |
| tree | 9b96cbb4fe54950d214ecfbd280bd8306df362bd | |
| parent | 6a85f65c9f73f51fff87f3f8f938ad7250c26053 (diff) | |
qcacld: Fix logging issue in sme_CcxSendBeaconReqScanResults()
Recently the CCX UPLOAD feature was enabled which exposed a mismatch
between format and argument in the invocation of a logging API, so
update the format to add a specifier for the extra argument.
Change-Id: I9f90aec656b05c1027303adb8fb3f985e521aefe
CRs-fixed: 601443
| -rw-r--r-- | CORE/SME/src/rrm/sme_rrm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SME/src/rrm/sme_rrm.c b/CORE/SME/src/rrm/sme_rrm.c index c3af20dbbbcb..9d8c2024de68 100644 --- a/CORE/SME/src/rrm/sme_rrm.c +++ b/CORE/SME/src/rrm/sme_rrm.c @@ -425,7 +425,7 @@ static eHalStatus sme_CcxSendBeaconReqScanResults(tpAniSirGlobal pMac, pBcnReport->flag = (measurementDone << 1)|((pCurResult)?true:false); smsLog(pMac, LOG1, "SME Sending BcnRep to HDD numBss(%d)" - " msgCounter(%d) bssCounter(%d)", + " msgCounter(%d) bssCounter(%d) flag(%d)", pBcnReport->numBss, msgCounter, bssCounter, pBcnReport->flag); roamInfo.pCcxBcnReportRsp = pBcnReport; |
