diff options
author | Ladislav Zezula <ladislav.zezula@avast.com> | 2021-12-17 14:51:35 +0100 |
---|---|---|
committer | Ladislav Zezula <ladislav.zezula@avast.com> | 2021-12-17 14:51:35 +0100 |
commit | 1a94f94b50f6d829b1e8fba08a3002a5db4f00d5 (patch) | |
tree | 86e05dc27d67a68f5b5168df451d867db0902693 /test/TLogHelper.cpp | |
parent | 5ab093b7a57b8779dff06a08fac19d46c40b3329 (diff) |
Support for protected SCX files
Diffstat (limited to 'test/TLogHelper.cpp')
-rw-r--r-- | test/TLogHelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TLogHelper.cpp b/test/TLogHelper.cpp index cd10a3c..8a4fc41 100644 --- a/test/TLogHelper.cpp +++ b/test/TLogHelper.cpp @@ -402,7 +402,7 @@ char * TLogHelper::CopyFormatCharacter(char * szBuffer, const char *& szFormat) // String format
if(szFormat[0] == '%')
{
- if(szFormat[1] == 's' && szFormat[2] != ')')
+ if(szFormat[1] == 's')
{
strcpy(szBuffer, szStringFormat);
szFormat += 2;
|