Skip to content

Commit

Permalink
cxbe: Use NULL instead of nullptr
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Jul 7, 2023
1 parent 3dea5ba commit 58847f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/cxbe/Exe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ Exe::Exe(const char *x_szFilename)
// constructor initialization
void Exe::ConstructorInit()
{
m_SectionHeader = nullptr;
m_bzSection = nullptr;
m_SectionHeader = NULL;
m_bzSection = NULL;
}

// deconstructor
Expand Down Expand Up @@ -342,5 +342,5 @@ uint08 *Exe::GetAddr(uint32 x_dwVirtualAddress)
return &m_bzSection[v][x_dwVirtualAddress - virt_addr];
}

return nullptr;
return NULL;
}

0 comments on commit 58847f7

Please sign in to comment.