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
d8b26261
Commit
d8b26261
authored
Nov 15, 2020
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms/tests: Inline a simple string.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e32d62df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
profile.c
dlls/mscms/tests/profile.c
+2
-4
No files found.
dlls/mscms/tests/profile.c
View file @
d8b26261
...
...
@@ -772,7 +772,6 @@ static void test_InstallColorProfileA( char *standardprofile, char *testprofile
{
CHAR
dest
[
MAX_PATH
],
base
[
MAX_PATH
];
DWORD
size
=
sizeof
(
dest
);
CHAR
slash
[]
=
"
\\
"
;
HANDLE
handle
;
SetLastError
(
0xdeadbeef
);
...
...
@@ -789,7 +788,7 @@ static void test_InstallColorProfileA( char *standardprofile, char *testprofile
MSCMS_basenameA
(
testprofile
,
base
);
lstrcatA
(
dest
,
slash
);
lstrcatA
(
dest
,
"
\\
"
);
lstrcatA
(
dest
,
base
);
/* Check if the profile is really there */
...
...
@@ -1157,7 +1156,6 @@ static void test_UninstallColorProfileA( char *testprofile )
{
CHAR
dest
[
MAX_PATH
],
base
[
MAX_PATH
];
DWORD
size
=
sizeof
(
dest
);
CHAR
slash
[]
=
"
\\
"
;
HANDLE
handle
;
SetLastError
(
0xdeadbeef
);
...
...
@@ -1174,7 +1172,7 @@ static void test_UninstallColorProfileA( char *testprofile )
MSCMS_basenameA
(
testprofile
,
base
);
lstrcatA
(
dest
,
slash
);
lstrcatA
(
dest
,
"
\\
"
);
lstrcatA
(
dest
,
base
);
ret
=
pUninstallColorProfileA
(
NULL
,
dest
,
TRUE
);
...
...
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