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
1c040737
Commit
1c040737
authored
Mar 25, 2022
by
Huw Davies
Committed by
Alexandre Julliard
Mar 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mountmgr: Fix long type warnings on macOS.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
27c0b997
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
diskarb.c
dlls/mountmgr.sys/diskarb.c
+3
-3
No files found.
dlls/mountmgr.sys/diskarb.c
View file @
1c040737
...
...
@@ -229,7 +229,7 @@ void run_diskarbitration_loop(void)
#if defined(HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H) && defined(HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H)
static
UInt8
map_option
(
ULONG
option
)
static
UInt8
map_option
(
unsigned
int
option
)
{
switch
(
option
)
{
...
...
@@ -314,7 +314,7 @@ NTSTATUS dhcp_request( void *args )
case
OPTION_ROUTER_ADDRESS
:
case
OPTION_BROADCAST_ADDRESS
:
{
DWORD
*
ptr
=
(
DWORD
*
)(
params
->
buffer
+
params
->
offset
);
unsigned
int
*
ptr
=
(
unsigned
int
*
)(
params
->
buffer
+
params
->
offset
);
if
(
len
==
sizeof
(
*
ptr
)
&&
params
->
size
>=
sizeof
(
*
ptr
))
{
CFDataGetBytes
(
value
,
CFRangeMake
(
0
,
len
),
(
UInt8
*
)
ptr
);
...
...
@@ -341,7 +341,7 @@ NTSTATUS dhcp_request( void *args )
break
;
}
default:
FIXME
(
"option %u not supported
\n
"
,
params
->
req
->
id
);
FIXME
(
"option %u not supported
\n
"
,
(
unsigned
int
)
params
->
req
->
id
);
break
;
}
...
...
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