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
b07e06e2
Commit
b07e06e2
authored
Sep 20, 2022
by
André Zwing
Committed by
Alexandre Julliard
Sep 20, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix ARM vs AMD64 typo.
parent
903c91fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
thread.c
dlls/ntdll/unix/thread.c
+2
-2
No files found.
dlls/ntdll/unix/thread.c
View file @
b07e06e2
...
...
@@ -1107,8 +1107,8 @@ void *get_cpu_area( USHORT machine )
switch
(
cpu
->
Machine
)
{
case
IMAGE_FILE_MACHINE_I386
:
align
=
TYPE_ALIGNMENT
(
I386_CONTEXT
);
break
;
case
IMAGE_FILE_MACHINE_AMD64
:
align
=
TYPE_ALIGNMENT
(
A
RM
_CONTEXT
);
break
;
case
IMAGE_FILE_MACHINE_ARMNT
:
align
=
TYPE_ALIGNMENT
(
A
MD64
_CONTEXT
);
break
;
case
IMAGE_FILE_MACHINE_AMD64
:
align
=
TYPE_ALIGNMENT
(
A
MD64
_CONTEXT
);
break
;
case
IMAGE_FILE_MACHINE_ARMNT
:
align
=
TYPE_ALIGNMENT
(
A
RM
_CONTEXT
);
break
;
case
IMAGE_FILE_MACHINE_ARM64
:
align
=
TYPE_ALIGNMENT
(
ARM64_NT_CONTEXT
);
break
;
default:
return
NULL
;
}
...
...
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