mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Show the value, not the address in memory! (Thanks to Dmitry Philippov)
svn path=/trunk/; revision=24106
This commit is contained in:
parent
d64332beb2
commit
4309a525f4
1 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ static NTSTATUS WINAPI QueryRoutine (IN PCWSTR ValueName, IN ULONG ValueType, IN
|
|||
|
||||
case REG_BINARY:
|
||||
trace("ValueType: REG_BINARY\n");
|
||||
trace("ValueData: %d\n", (int)ValueData);
|
||||
trace("ValueData: %d\n", *(unsigned int *)ValueData);
|
||||
break;
|
||||
|
||||
case REG_SZ:
|
||||
|
@ -211,7 +211,7 @@ static NTSTATUS WINAPI QueryRoutine (IN PCWSTR ValueName, IN ULONG ValueType, IN
|
|||
|
||||
case REG_DWORD:
|
||||
trace("ValueType: REG_DWORD\n");
|
||||
trace("ValueData: %d\n", (int)ValueData);
|
||||
trace("ValueData: %d\n", *(unsigned int *)ValueData);
|
||||
break;
|
||||
};
|
||||
trace("ValueLength: %d\n", (int)ValueLength);
|
||||
|
|
Loading…
Reference in a new issue