Просмотр исходного кода

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 лет назад
Родитель
Сommit
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;
 	}