Common: asterisks go against the type name

not the variable name
This commit is contained in:
mathieui
2016-01-21 20:46:25 +01:00
parent 7c3e4b34f3
commit 78aa398e7c
22 changed files with 44 additions and 44 deletions

View File

@ -18,7 +18,7 @@
#include "Common/Logging/LogManager.h"
void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
const char *file, int line, const char* fmt, ...)
const char* file, int line, const char* fmt, ...)
{
va_list args;
va_start(args, fmt);
@ -115,7 +115,7 @@ LogManager::~LogManager()
}
void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
const char *file, int line, const char *format, va_list args)
const char* file, int line, const char* format, va_list args)
{
char temp[MAX_MSGLEN];
LogContainer *log = m_Log[type];
@ -160,7 +160,7 @@ FileLogListener::FileLogListener(const std::string& filename)
SetEnable(true);
}
void FileLogListener::Log(LogTypes::LOG_LEVELS, const char *msg)
void FileLogListener::Log(LogTypes::LOG_LEVELS, const char* msg)
{
if (!IsEnabled() || !IsValid())
return;