From 0e3b2456f9e472c433cc4f8ce358a1e40be9352e Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Sun, 16 Apr 2017 21:55:27 -0700 Subject: [PATCH] `Logging`: Fix the typo in `otLogCrit()` macro argument `aInstance` (#1598) --- src/core/common/logging.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/common/logging.hpp b/src/core/common/logging.hpp index 06293f08d..36608b670 100644 --- a/src/core/common/logging.hpp +++ b/src/core/common/logging.hpp @@ -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