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
385b8c39
Commit
385b8c39
authored
Oct 16, 2011
by
Thomas Faber
Committed by
Alexandre Julliard
Oct 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Fix build with MSVC.
parent
90c87982
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
string.c
dlls/ntdll/tests/string.c
+3
-3
No files found.
dlls/ntdll/tests/string.c
View file @
385b8c39
...
...
@@ -1165,7 +1165,7 @@ static void test_wcslwrupr(void)
ok
(
p_wcsupr
((
LPWSTR
)
constemptyW
)
==
constemptyW
,
"p_wcsupr returned different string
\n
"
);
}
static
__cdecl
int
intcomparefunc
(
const
void
*
a
,
const
void
*
b
)
static
int
__cdecl
intcomparefunc
(
const
void
*
a
,
const
void
*
b
)
{
const
int
*
p
=
a
,
*
q
=
b
;
...
...
@@ -1174,7 +1174,7 @@ static __cdecl int intcomparefunc(const void *a, const void *b)
return
*
p
-
*
q
;
}
static
__cdecl
int
charcomparefunc
(
const
void
*
a
,
const
void
*
b
)
static
int
__cdecl
charcomparefunc
(
const
void
*
a
,
const
void
*
b
)
{
const
char
*
p
=
a
,
*
q
=
b
;
...
...
@@ -1183,7 +1183,7 @@ static __cdecl int charcomparefunc(const void *a, const void *b)
return
*
p
-
*
q
;
}
static
__cdecl
int
strcomparefunc
(
const
void
*
a
,
const
void
*
b
)
static
int
__cdecl
strcomparefunc
(
const
void
*
a
,
const
void
*
b
)
{
const
char
*
const
*
p
=
a
;
const
char
*
const
*
q
=
b
;
...
...
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