summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanjay Devnani <sdevnani@qca.qualcomm.com>2014-02-07 16:20:47 -0800
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-02-10 20:32:22 -0800
commit06a06aa578a90d1baf3bdee09a07242e6972a8e6 (patch)
treee5cbe734e2d3f73dbe3d8ea45c7c81119bd2fbb4
parent32a6794eb2d571988f43619b7a7c7441d7537574 (diff)
wlan: fix format specifier in print statement
Use correct format specifier to fix compiler warning Change-Id: I97babc66d12c2fe8d12e8a5658f7a5902df3bb7a CRs-fixed: 613262
-rw-r--r--CORE/SERVICES/HTC/htc_recv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SERVICES/HTC/htc_recv.c b/CORE/SERVICES/HTC/htc_recv.c
index ec5aaf09b644..822d77284a3e 100644
--- a/CORE/SERVICES/HTC/htc_recv.c
+++ b/CORE/SERVICES/HTC/htc_recv.c
@@ -313,7 +313,7 @@ A_STATUS HTCRxCompletionHandler(
netbuf = NULL;
break;
#else
- AR_DEBUG_PRINTF(ATH_DEBUG_ERR,("HTC Rx: insufficient length, got:%d expected =%u\n",
+ AR_DEBUG_PRINTF(ATH_DEBUG_ERR,("HTC Rx: insufficient length, got:%d expected =%zu\n",
netlen, payloadLen + HTC_HDR_LENGTH));
DebugDumpBytes((A_UINT8 *)HtcHdr,sizeof(HTC_FRAME_HDR),"BAD RX packet length");
status = A_ERROR;