Skip to content

Commit cd13bb5

Browse files
committed
Fix build err
1 parent 23a1a4f commit cd13bb5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/winmain.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,9 +1369,9 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR lpszCmdLine, int)
13691369
wstring errLogPath;
13701370
if (getParamValFromString(FLAG_ERRLOGPATH, params, errLogPath))
13711371
{
1372-
if (errLogPath.length() >= 2 && (errLogPath.front() == '"' && errLogPath.back() == '"')) ^ M
1372+
if (errLogPath.length() >= 2 && (errLogPath.front() == '"' && errLogPath.back() == '"'))
13731373
{
1374-
errLogPath = errLogPath.substr(1, errLogPath.length() - 2); ^ M
1374+
errLogPath = errLogPath.substr(1, errLogPath.length() - 2);
13751375
}
13761376
securityGuard.setErrLogPath(errLogPath);
13771377
}

0 commit comments

Comments
 (0)