wlan: lim: fix logging format/argument mismatch

Source code analysis uncovered mismatches between format and argument
in invocations of logging APIs in the lim code, so fix them.

Change-Id: I4a8a9bc6fe0492e08fb7b81e1b231e14f80820d6
CRs-fixed: 570511
diff --git a/CORE/MAC/src/pe/lim/limProcessMessageQueue.c b/CORE/MAC/src/pe/lim/limProcessMessageQueue.c
index eb3cc0b..3052641 100644
--- a/CORE/MAC/src/pe/lim/limProcessMessageQueue.c
+++ b/CORE/MAC/src/pe/lim/limProcessMessageQueue.c
@@ -864,8 +864,7 @@
     rc = wdaPostCtrlMsg(pMac, &msg);
     if (rc != eSIR_SUCCESS)
     {
-        limLog(pMac, LOGE, FL("wdaPostCtrlMsg() return failure"),
-               pMac);
+        limLog(pMac, LOGE, FL("wdaPostCtrlMsg() return failure"));
         palFreeMemory(pMac->hHdd, (tANI_U8 *)pAbortScanParams);
         return eHAL_STATUS_FAILURE;
     }