Skip to content

Commit

Permalink
Fix mixed indentation causing false positive compiler warning on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
D0ntPanic committed Sep 25, 2023
1 parent f0bcbb7 commit ec0c450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/debuggercontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2041,9 +2041,9 @@ static std::string CheckForLiteralString(uint64_t address)

std::string DebuggerController::GetAddressInformation(uint64_t address)
{
// Avoid too many results in the register widget when the address is 0x0
if (address == 0)
return "";
// Avoid too many results in the register widget when the address is 0x0
if (address == 0)
return "";

const DataBuffer memory = ReadMemory(address, 128);
auto result = CheckForPrintableString(memory);
Expand Down

0 comments on commit ec0c450

Please sign in to comment.