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
f7447407
Commit
f7447407
authored
Mar 12, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Use correct integral type.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3f7ef33e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
exception.c
dlls/ntdll/tests/exception.c
+5
-4
No files found.
dlls/ntdll/tests/exception.c
View file @
f7447407
...
...
@@ -2425,7 +2425,8 @@ static void test_restore_context(void)
EXCEPTION_RECORD
rec
;
_JUMP_BUFFER
buf
;
CONTEXT
ctx
;
int
i
,
pass
;
int
i
;
LONG
pass
;
if
(
!
pRtlUnwindEx
||
!
pRtlRestoreContext
||
!
pRtlCaptureContext
||
!
p_setjmp
)
{
...
...
@@ -4900,7 +4901,7 @@ static void CALLBACK test_unwind_apc(ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR a
static
void
test_unwind_from_apc
(
void
)
{
NTSTATUS
status
;
int
pass
;
LONG
pass
;
if
(
!
pNtQueueApcThread
)
{
...
...
@@ -8648,7 +8649,7 @@ static void test_user_apc(void)
{
NTSTATUS
status
;
CONTEXT
context
;
int
pass
;
LONG
pass
;
if
(
!
pNtQueueApcThread
)
{
...
...
@@ -8818,7 +8819,7 @@ static void suspend_process_proc(void)
{
HANDLE
event
=
OpenEventA
(
SYNCHRONIZE
,
FALSE
,
suspend_process_event_name
);
HANDLE
event2
=
OpenEventA
(
SYNCHRONIZE
|
EVENT_MODIFY_STATE
,
FALSE
,
suspend_process_event2_name
);
unsigned
int
count
;
DWORD
count
;
NTSTATUS
status
;
HANDLE
thread
;
...
...
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