Core: Fix mLogGetContext ifdef

This commit is contained in:
Jeffrey Pfau 2016-09-02 00:47:49 -07:00
parent 6519c4e465
commit f17e327626
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ static struct mLogger* _defaultLogger = NULL;
struct mLogger* mLogGetContext(void) {
struct mLogger* logger = NULL;
#ifndef DISABLE_LOGGING
#ifndef DISABLE_THREADING
logger = mCoreThreadLogger();
#endif
if (logger) {