Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2b5deddc
Commit
2b5deddc
authored
Mar 26, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Mar 27, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix CPU level on ARM.
parent
a29ca210
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
nt.c
dlls/ntdll/nt.c
+2
-2
No files found.
dlls/ntdll/nt.c
View file @
2b5deddc
...
@@ -1100,10 +1100,10 @@ static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
...
@@ -1100,10 +1100,10 @@ static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
while
(
isspace
(
*
value
))
value
++
;
while
(
isspace
(
*
value
))
value
++
;
if
((
s
=
strchr
(
value
,
'\n'
)))
if
((
s
=
strchr
(
value
,
'\n'
)))
*
s
=
'\0'
;
*
s
=
'\0'
;
if
(
!
strcasecmp
(
line
,
"CPU
part
"
))
if
(
!
strcasecmp
(
line
,
"CPU
architecture
"
))
{
{
if
(
isdigit
(
value
[
0
]))
if
(
isdigit
(
value
[
0
]))
info
->
Level
=
strtol
(
value
,
NULL
,
16
);
info
->
Level
=
atoi
(
value
);
continue
;
continue
;
}
}
if
(
!
strcasecmp
(
line
,
"CPU revision"
))
if
(
!
strcasecmp
(
line
,
"CPU revision"
))
...
...
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