[Base] remove unnecessary Boolean comparisons

This commit is contained in:
Uwe
2022-06-15 03:55:08 +02:00
parent 0828d769e8
commit a04db55476
5 changed files with 12 additions and 12 deletions

View File

@@ -1242,7 +1242,7 @@ BOOL StackWalker::ShowCallstack(HANDLE hThread, const CONTEXT *context, PReadPro
cleanup:
if (pSym) free( pSym );
if (bLastEntryCalled == false)
if (!bLastEntryCalled)
this->OnCallstackEntry(lastEntry, csEntry);
if (context == NULL)