mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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:
parent
8c2db2fee0
commit
c6aa16c16a
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue