diff options
Diffstat (limited to 'src/string/ntapi_tt_uintptr_to_hex_utf16.c')
-rw-r--r-- | src/string/ntapi_tt_uintptr_to_hex_utf16.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string/ntapi_tt_uintptr_to_hex_utf16.c b/src/string/ntapi_tt_uintptr_to_hex_utf16.c index bb7ae8c..2cd0b69 100644 --- a/src/string/ntapi_tt_uintptr_to_hex_utf16.c +++ b/src/string/ntapi_tt_uintptr_to_hex_utf16.c @@ -73,12 +73,12 @@ void __fastcall __ntapi_tt_uintptr_to_hex_utf16( __in uintptr_t key, __out wchar16_t * formatted_key) { - #if defined (__NT32) + #if (__SIZEOF_POINTER__ == 4) __ntapi_tt_uint_to_hex_utf16( key, formatted_key, 32); - #elif defined (__NT64) + #elif (__SIZEOF_POINTER__ == 8) __ntapi_tt_uint_to_hex_utf16( key, formatted_key, |