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
0993244b
Commit
0993244b
authored
Jul 09, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Remove unneeded address-of operators from array names.
parent
2b8bf17a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
effect_linuxinput.c
dlls/dinput/effect_linuxinput.c
+2
-2
No files found.
dlls/dinput/effect_linuxinput.c
View file @
0993244b
...
...
@@ -875,7 +875,7 @@ HRESULT linuxinput_get_info_A(
info
->
dwDynamicParams
=
info
->
dwStaticParams
;
/* yes, this is windows behavior (print the GUID_Name for name) */
strcpy
((
char
*
)
&
(
info
->
tszName
)
,
_dump_dinput_GUID
(
rguid
));
strcpy
((
char
*
)
info
->
tszName
,
_dump_dinput_GUID
(
rguid
));
return
DI_OK
;
}
...
...
@@ -910,7 +910,7 @@ HRESULT linuxinput_get_info_W(
/* yes, this is windows behavior (print the GUID_Name for name) */
MultiByteToWideChar
(
CP_ACP
,
0
,
_dump_dinput_GUID
(
rguid
),
-
1
,
(
WCHAR
*
)
&
(
info
->
tszName
)
,
MAX_PATH
);
(
WCHAR
*
)
info
->
tszName
,
MAX_PATH
);
return
DI_OK
;
}
...
...
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