qcacmn: utils: Replace instances of unadorned %p

Replace instances of unadorned %p in utils.

Change-Id: Idd12720d45238adad17ffafa6dfb50041022cbe2
CRs-Fixed: 2111274
Este commit está contenido en:
Jeff Johnson
2017-09-18 10:05:59 -07:00
cometido por snandini
padre 60cb7e6fc9
commit 8104b5db07
Se han modificado 6 ficheros con 15 adiciones y 15 borrados

Ver fichero

@@ -62,7 +62,7 @@ static void ptt_sock_dump_buf(const unsigned char *pbuf, int cnt)
for (i = 0; i < cnt; i++) {
if ((i % 16) == 0)
QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_INFO,
"\n%p:", pbuf);
"\n%pK:", pbuf);
QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_INFO, " %02X",
*pbuf);
pbuf++;