summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Logging/LogManager.cpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-01-21 22:18:18 +0100
committermathieui <mathieui@mathieui.net>2016-01-21 22:20:22 +0100
commit4b06e927315aeaae5294eb46925bdb9b8dd301dc (patch)
treeb89fff11cb62813c947524181824f9117be0be49 /Source/Core/Common/Logging/LogManager.cpp
parentf15ffda5a7518cb87a09f301deaeffab0723ec27 (diff)
A few more asterisks, mostly casts
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.cpp')
-rw-r--r--Source/Core/Common/Logging/LogManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp
index 1ba9a06815..006a5f6ffc 100644
--- a/Source/Core/Common/Logging/LogManager.cpp
+++ b/Source/Core/Common/Logging/LogManager.cpp
@@ -28,7 +28,7 @@ void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
va_end(args);
}
-LogManager *LogManager::m_logManager = nullptr;
+LogManager* LogManager::m_logManager = nullptr;
LogManager::LogManager()
{
@@ -118,7 +118,7 @@ void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
const char* file, int line, const char* format, va_list args)
{
char temp[MAX_MSGLEN];
- LogContainer *log = m_Log[type];
+ LogContainer* log = m_Log[type];
if (!log->IsEnabled() || level > log->GetLevel() || !log->HasListeners())
return;