Skip to content

Commit

Permalink
Fix 32-bit builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfpld committed May 28, 2024
1 parent aae58fb commit cbea6d7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions public/client/TracyKCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ using elf_sword = int32_t;
#if __WORDSIZE == 32
using elf_addr = uint32_t;
using elf_off = uint32_t;
using elf_wxword = uint32_t;
using elf_xword = uint32_t;
#else
using elf_addr = uint64_t;
using elf_off = uint64_t;
using elf_xword = uint64_t;
using elf_sxword = int64_t;
using elf_wxword = uint64_t;
#endif

struct elf_ehdr
Expand Down

0 comments on commit cbea6d7

Please sign in to comment.