Finalizing

This commit is contained in:
Ladislav Zezula
2021-12-17 23:42:52 +01:00
parent 4f4f926c1a
commit 3424ac8ba4
9 changed files with 123 additions and 113 deletions

View File

@@ -423,7 +423,7 @@ char * TLogHelper::CopyFormatCharacter(char * szBuffer, const char *& szFormat)
// String format
if(szFormat[0] == '%')
{
if(szFormat[1] == 's')
if(szFormat[1] == 's' && szFormat[2] != ')')
{
strcpy(szBuffer, szStringFormat);
szFormat += 2;