Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Ghidra/Features/Decompiler/src/decompile/cpp/address.cc
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,8 @@ void RangeList::decode(Decoder &decoder)
#ifdef UINTB4
uintb uintbmasks[9] = { 0, 0xff, 0xffff, 0xffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff };
#else
uintb uintbmasks[9] = { 0, 0xff, 0xffff, 0xffffff, 0xffffffff, 0xffffffffffLL,
0xffffffffffffLL, 0xffffffffffffffLL, 0xffffffffffffffffLL };
uintb uintbmasks[9] = { 0, 0xff, 0xffff, 0xffffff, 0xffffffff, 0xffffffffffULL,
0xffffffffffffULL, 0xffffffffffffffULL, 0xffffffffffffffffULL };
#endif

/// Treat the given \b val as a constant of \b size bytes
Expand Down