Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a5882ea authored by Ashish Kumar Dhanotiya's avatar Ashish Kumar Dhanotiya
Browse files

wlan: ESE Compilation Error Fix

An appropriate format specifier needs to be
used for sizeof operator when being used in
debug print statements

Change-Id: I80ae1e5c1327bcb4ba32cf51f99b5f01d5aaa640
CRs-Fixed: 706607
parent 919fd66e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3147,7 +3147,7 @@ eHalStatus sme_QosESEProcessReassocTspecRsp(tpAniSirGlobal pMac, v_U8_t sessionI
    tspecIeLen = pCsrConnectedInfo->nTspecIeLength;
    if (tspecIeLen < sizeof(tDot11fIEWMMTSPEC)) {
        VOS_TRACE(VOS_MODULE_ID_SME, VOS_TRACE_LEVEL_ERROR,
                FL("ESE Tspec IE len %d less than min %d"),
                FL("ESE Tspec IE len %d less than min %zu"),
                tspecIeLen, sizeof(tDot11fIEWMMTSPEC));
        return eHAL_STATUS_FAILURE;
    }