qcacld-3.0: Fix compilation issue for 32 bit builds
In function csr_roam_chk_lnk_disassoc_ind format specifier to print sizeof() is for 64 bit systems which leads in compilation error on 32 bit systems. Fix this issue by common format specifier for both 32 and 64 bit compilation. Change-Id: Ib3a5df243c8c29040321af4bdcf7230a6e5e0e52 CRs-Fixed: 1055344
此提交包含在:
@@ -10295,7 +10295,7 @@ csr_roam_chk_lnk_disassoc_ind(tpAniSirGlobal mac_ctx, tSirSmeRsp *msg_ptr)
|
|||||||
cmd = qdf_mem_malloc(sizeof(*cmd));
|
cmd = qdf_mem_malloc(sizeof(*cmd));
|
||||||
if (NULL == cmd) {
|
if (NULL == cmd) {
|
||||||
sms_log(mac_ctx, LOGE,
|
sms_log(mac_ctx, LOGE,
|
||||||
FL("memory allocation failed for size = %ld"),
|
FL("memory allocation failed for size = %zu"),
|
||||||
sizeof(*cmd));
|
sizeof(*cmd));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
新增問題並參考
封鎖使用者