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
03ede200
Commit
03ede200
authored
Aug 17, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a couple of MSVC signed/unsigned warnings.
parent
0b5cc286
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
info.c
dlls/ntdll/tests/info.c
+4
-4
No files found.
dlls/ntdll/tests/info.c
View file @
03ede200
...
...
@@ -216,7 +216,7 @@ static void test_query_process(void)
DWORD
status
;
DWORD
last_pid
;
ULONG
ReturnLength
;
int
i
=
0
,
j
=
0
,
k
=
0
;
int
i
=
0
,
k
=
0
;
int
is_nt
=
0
;
SYSTEM_BASIC_INFORMATION
sbi
;
...
...
@@ -297,6 +297,7 @@ static void test_query_process(void)
if
(
!
is_nt
)
{
DWORD
j
;
for
(
j
=
0
;
j
<
spi
->
dwThreadCount
;
j
++
)
{
k
++
;
...
...
@@ -362,8 +363,7 @@ static void test_query_module(void)
{
DWORD
status
;
ULONG
ReturnLength
;
DWORD
ModuleCount
;
int
i
;
ULONG
ModuleCount
,
i
;
ULONG
SystemInformationLength
=
sizeof
(
SYSTEM_MODULE_INFORMATION
);
SYSTEM_MODULE_INFORMATION
*
smi
=
HeapAlloc
(
GetProcessHeap
(),
0
,
SystemInformationLength
);
...
...
@@ -389,7 +389,7 @@ static void test_query_module(void)
/* Loop through all the modules/drivers, Wine doesn't get here (yet) */
for
(
i
=
0
;
i
<
ModuleCount
;
i
++
)
{
ok
(
i
==
sm
->
Id
,
"Id (%d) should have matched %
d
\n
"
,
sm
->
Id
,
i
);
ok
(
i
==
sm
->
Id
,
"Id (%d) should have matched %
lu
\n
"
,
sm
->
Id
,
i
);
sm
++
;
}
...
...
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