1
0
Fork 0

Merge pull request #2929 from greenozon/development

Reducing disk I/O operations by reusing local var value
This commit is contained in:
Duncan Ogilvie 2022-09-03 13:32:37 +02:00 committed by GitHub
commit 1ec3031aca
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ bool cbDebugInit(int argc, char* argv[])
arch = IsWow64() ? PeArch::Dotnet64 : PeArch::Dotnet86;
//do some basic checks
switch(GetPeArch(arg1w.c_str()))
switch(arch)
{
case PeArch::Invalid:
dputs(QT_TRANSLATE_NOOP("DBG", "Invalid PE file!"));