From cbea6d78521ec4a45f2c838d274d2420ffd9f860 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 28 May 2024 20:51:16 +0200 Subject: [PATCH] Fix 32-bit builds. --- public/client/TracyKCore.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/client/TracyKCore.cpp b/public/client/TracyKCore.cpp index 8a221dae..09d51d11 100644 --- a/public/client/TracyKCore.cpp +++ b/public/client/TracyKCore.cpp @@ -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