Commit da275038 authored by Marko Nikolic's avatar Marko Nikolic Committed by Alexandre Julliard

advapi32: Removed sign comparison warning.

parent 0ffb137d
...@@ -925,7 +925,7 @@ static DWORD mac_delete_credential(LPCWSTR TargetName) ...@@ -925,7 +925,7 @@ static DWORD mac_delete_credential(LPCWSTR TargetName)
* *
*/ */
static INT convert_PCREDENTIALW_to_PCREDENTIALA(const CREDENTIALW *CredentialW, PCREDENTIALA CredentialA, INT len) static INT convert_PCREDENTIALW_to_PCREDENTIALA(const CREDENTIALW *CredentialW, PCREDENTIALA CredentialA, DWORD len)
{ {
char *buffer; char *buffer;
INT string_len; INT string_len;
...@@ -1582,7 +1582,8 @@ BOOL WINAPI CredReadDomainCredentialsA(PCREDENTIAL_TARGET_INFORMATIONA TargetInf ...@@ -1582,7 +1582,8 @@ BOOL WINAPI CredReadDomainCredentialsA(PCREDENTIAL_TARGET_INFORMATIONA TargetInf
DWORD Flags, DWORD *Size, PCREDENTIALA **Credentials) DWORD Flags, DWORD *Size, PCREDENTIALA **Credentials)
{ {
PCREDENTIAL_TARGET_INFORMATIONW TargetInformationW; PCREDENTIAL_TARGET_INFORMATIONW TargetInformationW;
INT len, i; INT len;
DWORD i;
WCHAR *buffer, *end; WCHAR *buffer, *end;
BOOL ret; BOOL ret;
PCREDENTIALW* CredentialsW; PCREDENTIALW* CredentialsW;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment