diff options
| author | Vignesh Viswanathan <viswanat@codeaurora.org> | 2017-11-15 14:00:17 +0530 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-11-18 12:52:32 -0800 |
| commit | 60b7f7157a1b4bc04baf8042d0cd2044ec16f46e (patch) | |
| tree | b7a8d0855b3321034f84659599b950327b9986e5 | |
| parent | 58bde10123802c790ad599d1eb82dd0b27f03e46 (diff) | |
qcacld-3.0: lim_utils: Replace instances of unadorned %p
Replace instances of unadorned %p in lim_utils.
Change-Id: Ie322c66ab70346757032ae97ee546bad67d1bb00
CRs-Fixed: 2133308
| -rw-r--r-- | core/mac/src/pe/lim/lim_utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/mac/src/pe/lim/lim_utils.c b/core/mac/src/pe/lim/lim_utils.c index 7c29801f233d..e294d7b4e38c 100644 --- a/core/mac/src/pe/lim/lim_utils.c +++ b/core/mac/src/pe/lim/lim_utils.c @@ -7267,9 +7267,9 @@ QDF_STATUS lim_util_get_type_subtype(void *pkt, uint8_t *type, hdr = WMA_GET_RX_MAC_HEADER(rxpktinfor); if (hdr->fc.type == SIR_MAC_MGMT_FRAME) { - pe_debug("RxBd: %pK mHdr: %pK Type: %d Subtype: %d SizesFC: %zu", - rxpktinfor, hdr, hdr->fc.type, hdr->fc.subType, - sizeof(tSirMacFrameCtl)); + pe_debug("RxBd: %pK mHdr: %pK Type: %d Subtype: %d SizeFC: %zu", + rxpktinfor, hdr, hdr->fc.type, hdr->fc.subType, + sizeof(tSirMacFrameCtl)); *type = hdr->fc.type; *subtype = hdr->fc.subType; } else { |
