mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
use "%p" to DPRINT a pointer instead of casting it to int and using "%08x"
svn path=/trunk/; revision=33455
This commit is contained in:
@@ -294,7 +294,7 @@ static BOOL TryToTranslateChar(WORD wVirtKey,
|
||||
if( vkPtr->VirtualKey != 0xff )
|
||||
{
|
||||
DPRINT( "Found dead key with no trailer in the table.\n" );
|
||||
DPRINT( "VK: %04x, ADDR: %08x\n", wVirtKey, (int)vkPtr );
|
||||
DPRINT( "VK: %04x, ADDR: %p\n", wVirtKey, vkPtr );
|
||||
return FALSE;
|
||||
}
|
||||
*pwcTranslatedChar = vkPtr->wch[CapsMod];
|
||||
|
||||
Reference in New Issue
Block a user