浏览代码

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
Aggarwal, Nishank 8 年之前
父节点
当前提交
9130c3db8d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/sme/src/csr/csr_api_roam.c

+ 1 - 1
core/sme/src/csr/csr_api_roam.c

@@ -10295,7 +10295,7 @@ csr_roam_chk_lnk_disassoc_ind(tpAniSirGlobal mac_ctx, tSirSmeRsp *msg_ptr)
 	cmd = qdf_mem_malloc(sizeof(*cmd));
 	if (NULL == cmd) {
 		sms_log(mac_ctx, LOGE,
-			FL("memory allocation failed for size = %ld"),
+			FL("memory allocation failed for size = %zu"),
 			sizeof(*cmd));
 		return;
 	}