diff options
| author | rajdakin <rajdakin@gmail.com> | 2021-04-14 12:59:25 +0200 |
|---|---|---|
| committer | rajdakin <rajdakin@gmail.com> | 2021-04-14 13:15:18 +0200 |
| commit | e93a280d2c94476df79f586ed352cb68f3a28867 (patch) | |
| tree | eb433cc59d786995e38610f5ace79d640d1a85ee /src/wrapped/wrappedlib_init.h | |
| parent | 51fa96c44b4b307a6d512a7fe943fb75b4f681ac (diff) | |
| download | box64-e93a280d2c94476df79f586ed352cb68f3a28867.tar.gz box64-e93a280d2c94476df79f586ed352cb68f3a28867.zip | |
Third pass, bumped the minimal CMake version up to 3.4
Diffstat (limited to 'src/wrapped/wrappedlib_init.h')
| -rwxr-xr-x | src/wrapped/wrappedlib_init.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wrapped/wrappedlib_init.h b/src/wrapped/wrappedlib_init.h index cd59efe1..c9fe03a9 100755 --- a/src/wrapped/wrappedlib_init.h +++ b/src/wrapped/wrappedlib_init.h @@ -194,10 +194,10 @@ int FUNC(_fini)(library_t* lib) return 1; } -int FUNC(_get)(library_t* lib, const char* name, uintptr_t *offs, uint32_t *sz) +int FUNC(_get)(library_t* lib, const char* name, uintptr_t *offs, uintptr_t *sz) { uintptr_t addr = 0; - uint32_t size = 0; + uintptr_t size = 0; #ifdef CUSTOM_FAIL void* symbol = NULL; #endif @@ -217,10 +217,10 @@ int FUNC(_get)(library_t* lib, const char* name, uintptr_t *offs, uint32_t *sz) return 1; } -int FUNC(_getnoweak)(library_t* lib, const char* name, uintptr_t *offs, uint32_t *sz) +int FUNC(_getnoweak)(library_t* lib, const char* name, uintptr_t *offs, uintptr_t *sz) { uintptr_t addr = 0; - uint32_t size = 0; + uintptr_t size = 0; #ifdef CUSTOM_FAIL void* symbol = NULL; #endif |