1
0
Fork 0

Reducing disk I/O operations by reusing local var value

This commit is contained in:
Alex 2022-09-03 13:26:47 +03:00
parent becfa86ac6
commit df7e45a0d7
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!"));