mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
Ted Percival : Display REG_DWORD as unsigned with lowercase hex digits. <ted at midg3t.net>
svn path=/trunk/; revision=31074
This commit is contained in:
parent
3d376e1acb
commit
c10fc4547a
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ static void AddEntryToList(HWND hwndLV, LPTSTR Name, DWORD dwValType, void* ValB
|
|||
TCHAR buf[200];
|
||||
if(dwCount == sizeof(DWORD))
|
||||
{
|
||||
wsprintf(buf, _T("0x%08X (%d)"), *(DWORD*)ValBuf, *(DWORD*)ValBuf);
|
||||
wsprintf(buf, _T("0x%08x (%u)"), *(DWORD*)ValBuf, *(DWORD*)ValBuf);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue