From da5089a180527db13c7e09231443c5d95311f9ba Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 24 May 2018 12:26:12 -0400 Subject: ldso: internals: pe_hex_utf16_to_uintptr(): properly support 32-bit targets. --- src/ldso/pe_get_framework_runtime_data.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/ldso/pe_get_framework_runtime_data.c b/src/ldso/pe_get_framework_runtime_data.c index 1fabf40..366e523 100644 --- a/src/ldso/pe_get_framework_runtime_data.c +++ b/src/ldso/pe_get_framework_runtime_data.c @@ -114,6 +114,9 @@ static int32_t pe_hex_utf16_to_uintptr( const wchar16_t hex_key_utf16[], uintptr_t * key) { + (void)pe_hex_utf16_to_uint32; + (void)pe_hex_utf16_to_uint64; + #if (__SIZEOF_POINTER__ == 4) return pe_hex_utf16_to_uint32(hex_key_utf16,key); #elif (__SIZEOF_POINTER__ == 8) -- cgit v1.2.3