wlan: lim: Fix additional logging format/argument mismatches

Previously change "wlan: lim: fix logging format/argument mismatch"
fixed some instances of mismatches between format and argument in
invocations of logging APIs in the lim code.  Recent analysis has
uncovered additional mismatches, so fix them.

CRs-fixed: 570511
Change-Id: If71cdf164b36c60a9033e29ab4d8a5453c952e1d
diff --git a/CORE/MAC/src/pe/lim/limP2P.c b/CORE/MAC/src/pe/lim/limP2P.c
index 7c09688..e226d74 100644
--- a/CORE/MAC/src/pe/lim/limP2P.c
+++ b/CORE/MAC/src/pe/lim/limP2P.c
@@ -960,9 +960,9 @@
                 nBytes += noaLen;
                 limLog( pMac, LOGE,
                         FL("noaLen=%d origLen=%d pP2PIe=%p"
-                        " nBytes=%d nBytesToCopy=%d "),
-                                   noaLen,origLen,pP2PIe,nBytes,
-                   ((pP2PIe + origLen + 2) - (v_U8_t *)pMbMsg->data));
+                           " nBytes=%d nBytesToCopy=%zu"),
+                        noaLen,origLen, pP2PIe, nBytes,
+                        ((pP2PIe + origLen + 2) - (v_U8_t *)pMbMsg->data));
             }
         }