secur32: Use '%u' to print GetLastError().
This commit is contained in:
parent
13136c6e23
commit
933bf76b5d
|
@ -943,7 +943,7 @@ BOOLEAN WINAPI GetComputerObjectNameW(
|
|||
if (ntStatus != STATUS_SUCCESS)
|
||||
{
|
||||
SetLastError(LsaNtStatusToWinError(ntStatus));
|
||||
WARN("LsaOpenPolicy failed with NT status %x\n", GetLastError());
|
||||
WARN("LsaOpenPolicy failed with NT status %u\n", GetLastError());
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -953,7 +953,7 @@ BOOLEAN WINAPI GetComputerObjectNameW(
|
|||
if (ntStatus != STATUS_SUCCESS)
|
||||
{
|
||||
SetLastError(LsaNtStatusToWinError(ntStatus));
|
||||
WARN("LsaQueryInformationPolicy failed with NT status %x\n",
|
||||
WARN("LsaQueryInformationPolicy failed with NT status %u\n",
|
||||
GetLastError());
|
||||
LsaClose(policyHandle);
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in New Issue