Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2c9fbf83
Commit
2c9fbf83
authored
Feb 26, 2022
by
Huw Davies
Committed by
Alexandre Julliard
Feb 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Use an unsigned int to avoid a compiler warning on macOS.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
57a8ccf4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
unixlib.c
dlls/crypt32/unixlib.c
+2
-2
No files found.
dlls/crypt32/unixlib.c
View file @
2c9fbf83
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment