Fix building of CC2538 target with enabled platform logging (#1422)

This commit is contained in:
Michael
2017-03-03 08:40:10 -08:00
committed by Jonathan Hui
parent de48acf9fb
commit d4718dbeae
+1 -1
View File
@@ -113,7 +113,7 @@ ThreadError otLinkRawSetPromiscuous(otInstance *aInstance, bool aEnable)
VerifyOrExit(aInstance->mLinkRaw.IsEnabled(), error = kThreadError_InvalidState);
otLogInfoPlat("LinkRaw Promiscuous=%d", aEnabled ? 1 : 0);
otLogInfoPlat("LinkRaw Promiscuous=%d", aEnable ? 1 : 0);
otPlatRadioSetPromiscuous(aInstance, aEnable);