about summary refs log tree commit diff stats
path: root/src/include/elfloader.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-25 20:56:45 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-25 20:56:45 +0100
commit235784b46f47411b73d383c4fb462c3ffac323a4 (patch)
treed24269356747e3799f80b59038bebe7c6c1b2c13 /src/include/elfloader.h
parent66af0f810cef61adc8cf4eff2a24132259aae0da (diff)
downloadbox64-235784b46f47411b73d383c4fb462c3ffac323a4.tar.gz
box64-235784b46f47411b73d383c4fb462c3ffac323a4.zip
Added wrapped libfontconfig and libfreetype, plus some elfloader/tls bugfix
Diffstat (limited to 'src/include/elfloader.h')
-rwxr-xr-xsrc/include/elfloader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/elfloader.h b/src/include/elfloader.h
index a4d2cb6b..241c25e7 100755
--- a/src/include/elfloader.h
+++ b/src/include/elfloader.h
@@ -45,7 +45,7 @@ const char* FindNearestSymbolName(elfheader_t* h, void* p, uintptr_t* start, uin
 int32_t GetTLSBase(elfheader_t* h);
 uint32_t GetTLSSize(elfheader_t* h);
 void* GetTLSPointer(box64context_t* context, elfheader_t* h);
-void* GetDTatOffset(box64context_t* context, int index, int offset);
+void* GetDTatOffset(box64context_t* context, unsigned long int index, unsigned long int offset);
 #ifdef DYNAREC
 dynablocklist_t* GetDynablocksFromAddress(box64context_t *context, uintptr_t addr);
 dynablocklist_t* GetDynablocksFromElf(elfheader_t* h);