1
0

Removed unnecessary format data.

This commit is contained in:
Alexander Harkness 2013-11-13 20:09:24 +00:00
parent cd8894fca6
commit 3ea3da8b3f

View File

@ -124,7 +124,7 @@ void cLog::Log(const char * a_Format, va_list argList)
#endif #endif
if (m_File) if (m_File)
{ {
fprintf(m_File, "%s\n", Line.c_str(), m_File); fprintf(m_File, "%s\n", Line.c_str());
fflush(m_File); fflush(m_File);
} }