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
c5a4878f
Commit
c5a4878f
authored
Sep 28, 2012
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Sep 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Reuse common string constants.
parent
8b3d4942
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
builtins.c
programs/cmd/builtins.c
+1
-2
No files found.
programs/cmd/builtins.c
View file @
c5a4878f
...
...
@@ -2241,9 +2241,8 @@ static int WCMD_compare( const void *a, const void *b )
{
int
r
;
const
WCHAR
*
const
*
str_a
=
a
,
*
const
*
str_b
=
b
;
static
const
WCHAR
eqW
[]
=
{
'='
,
'\0'
};
r
=
CompareStringW
(
LOCALE_USER_DEFAULT
,
NORM_IGNORECASE
|
SORT_STRINGSORT
,
*
str_a
,
strcspnW
(
*
str_a
,
eq
W
),
*
str_b
,
strcspnW
(
*
str_b
,
eq
W
)
);
*
str_a
,
strcspnW
(
*
str_a
,
eq
ualW
),
*
str_b
,
strcspnW
(
*
str_b
,
equal
W
)
);
if
(
r
==
CSTR_LESS_THAN
)
return
-
1
;
if
(
r
==
CSTR_GREATER_THAN
)
return
1
;
return
0
;
...
...
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