Commit 2c9fbf83 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

crypt32: Use an unsigned int to avoid a compiler warning on macOS.

parent 57a8ccf4
......@@ -623,7 +623,7 @@ static const char * const CRYPT_knownLocations[] = {
static void load_root_certs(void)
{
DWORD i;
unsigned int i;
#ifdef HAVE_SECURITY_SECURITY_H
const SecTrustSettingsDomain domains[] = {
......@@ -651,7 +651,7 @@ static void load_root_certs(void)
CFRelease(certData);
}
else
WARN("could not export certificate %d to X509 format: 0x%08x\n", i, (unsigned int)status);
WARN("could not export certificate %u to X509 format: 0x%08x\n", i, (unsigned int)status);
}
CFRelease(certs);
}
......
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