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
b14447b1
Commit
b14447b1
authored
Oct 22, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
krnl386: Use the standard va_list instead of __ms_va_list.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2b863418
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
thunk.c
dlls/krnl386.exe16/thunk.c
+5
-5
No files found.
dlls/krnl386.exe16/thunk.c
View file @
b14447b1
...
...
@@ -2381,9 +2381,9 @@ INT WINAPI k32LoadStringA(HINSTANCE instance, UINT resource_id,
/***********************************************************************
* k32wvsprintfA (KERNEL32.16)
*/
INT
WINAPI
k32wvsprintfA
(
LPSTR
buffer
,
LPCSTR
spec
,
__ms_
va_list
args
)
INT
WINAPI
k32wvsprintfA
(
LPSTR
buffer
,
LPCSTR
spec
,
va_list
args
)
{
static
INT
(
WINAPI
*
pwvsprintfA
)(
LPSTR
,
LPCSTR
,
__ms_
va_list
);
static
INT
(
WINAPI
*
pwvsprintfA
)(
LPSTR
,
LPCSTR
,
va_list
);
if
(
!
pwvsprintfA
)
pwvsprintfA
=
user32_proc_address
(
"wvsprintfA"
);
return
(
*
pwvsprintfA
)(
buffer
,
spec
,
args
);
...
...
@@ -2394,12 +2394,12 @@ INT WINAPI k32wvsprintfA(LPSTR buffer, LPCSTR spec, __ms_va_list args)
*/
INT
WINAPIV
k32wsprintfA
(
LPSTR
buffer
,
LPCSTR
spec
,
...)
{
__ms_
va_list
args
;
va_list
args
;
INT
res
;
__ms_
va_start
(
args
,
spec
);
va_start
(
args
,
spec
);
res
=
k32wvsprintfA
(
buffer
,
spec
,
args
);
__ms_
va_end
(
args
);
va_end
(
args
);
return
res
;
}
...
...
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