secur32: Use '%u' to print GetLastError().

This commit is contained in:
Francois Gouget 2007-01-18 11:37:08 +01:00 committed by Alexandre Julliard
parent 13136c6e23
commit 933bf76b5d
1 changed files with 2 additions and 2 deletions

View File

@ -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;