Logging: Fix the typo in otLogCrit() macro argument aInstance (#1598)

This commit is contained in:
Abtin Keshavarzian
2017-04-16 21:55:27 -07:00
committed by Jonathan Hui
parent 116cbf371d
commit 0e3b2456f9
+1 -1
View File
@@ -77,7 +77,7 @@ extern "C" {
*/
#if OPENTHREAD_CONFIG_LOG_LEVEL >= OPENTHREAD_LOG_LEVEL_CRIT
#define otLogCrit(aInstance, aRegion, aFormat, ...) \
_otLogFormatter(aInstane, kLogLevelCrit, aRegion, aFormat, ## __VA_ARGS__)
_otLogFormatter(aInstance, kLogLevelCrit, aRegion, aFormat, ## __VA_ARGS__)
#else
#define otLogCrit(aInstance, aRegion, aFormat, ...)
#endif