qcacmn: Update correct format specifiers in ll_stats_get_req
Update correct format specifiers in ll_stats_get_req. req_id is an
unsigned integer, use %u instead of %d.
Change-Id: I06a1b571954dcf7392e41901bda51aeea99731de
CRs-Fixed: 2018087
diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c
index 6e2f4dd..29820e2 100644
--- a/wmi_unified_tlv.c
+++ b/wmi_unified_tlv.c
@@ -7214,8 +7214,8 @@
&cmd->peer_macaddr);
WMI_LOGD("LINK_LAYER_STATS - Get Request Params");
- WMI_LOGD("Request ID : %d", cmd->request_id);
- WMI_LOGD("Stats Type : %d", cmd->stats_type);
+ WMI_LOGD("Request ID : %u", cmd->request_id);
+ WMI_LOGD("Stats Type : %0x", cmd->stats_type);
WMI_LOGD("Vdev ID : %d", cmd->vdev_id);
WMI_LOGD("Peer MAC Addr : %pM", addr);