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
78b020c0
Commit
78b020c0
authored
Aug 19, 2010
by
Marko Nikolic
Committed by
Alexandre Julliard
Aug 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack/tests: Removed sign comparison warning in advpack tests.
parent
d7938822
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
advpack.c
dlls/advpack/tests/advpack.c
+5
-5
No files found.
dlls/advpack/tests/advpack.c
View file @
78b020c0
...
...
@@ -130,7 +130,7 @@ static void delnode_test(void)
HRESULT
hr
;
HANDLE
hn
;
CHAR
currDir
[
MAX_PATH
];
int
currDirLen
;
UINT
currDirLen
;
/* Native DelNode apparently does not support relative paths, so we use
absolute paths for testing */
...
...
@@ -446,7 +446,7 @@ static void translateinfstringex_test(void)
ok
(
hr
==
S_OK
,
"Expected S_OK, got %08x
\n
"
,
hr
);
ok
(
!
lstrcmpi
(
buffer
,
PROG_FILES_ROOT
),
"Expected %s, got %s
\n
"
,
PROG_FILES_ROOT
,
buffer
);
ok
(
size
==
lstrlenA
(
PROG_FILES_ROOT
)
+
1
,
"Expected size %d, got %d
\n
"
,
ok
(
size
==
strlen
(
PROG_FILES_ROOT
)
+
1
,
"Expected size %d, got %d
\n
"
,
lstrlenA
(
PROG_FILES_ROOT
)
+
1
,
size
);
memset
(
buffer
,
'a'
,
APP_PATH_LEN
);
...
...
@@ -457,7 +457,7 @@ static void translateinfstringex_test(void)
ok
(
hr
==
S_OK
,
"Expected S_OK, got %08x
\n
"
,
hr
);
ok
(
!
lstrcmpi
(
buffer
,
PROG_FILES_ROOT
),
"Expected %s, got %s
\n
"
,
PROG_FILES_ROOT
,
buffer
);
ok
(
size
==
lstrlenA
(
PROG_FILES_ROOT
)
+
1
,
"Expected size %d, got %d
\n
"
,
ok
(
size
==
strlen
(
PROG_FILES_ROOT
)
+
1
,
"Expected size %d, got %d
\n
"
,
lstrlenA
(
PROG_FILES_ROOT
)
+
1
,
size
);
{
...
...
@@ -473,7 +473,7 @@ static void translateinfstringex_test(void)
ok
(
hr
==
S_OK
,
"Expected S_OK, got %08x
\n
"
,
hr
);
ok
(
!
lstrcmpi
(
buffer
,
drive
),
"Expected %s, got %s
\n
"
,
drive
,
buffer
);
ok
(
size
==
lstrlenA
(
drive
)
+
1
,
"Expected size %d, got %d
\n
"
,
ok
(
size
==
strlen
(
drive
)
+
1
,
"Expected size %d, got %d
\n
"
,
lstrlenA
(
drive
)
+
1
,
size
);
}
...
...
@@ -531,7 +531,7 @@ static void translateinfstringex_test(void)
ok
(
hr
==
S_OK
,
"Expected S_OK, got %08x
\n
"
,
hr
);
ok
(
!
lstrcmpi
(
buffer
,
PROG_FILES_ROOT
),
"Expected %s, got %s
\n
"
,
PROG_FILES_ROOT
,
buffer
);
ok
(
size
==
lstrlenA
(
PROG_FILES_ROOT
)
+
1
,
"Expected size %d, got %d
\n
"
,
ok
(
size
==
strlen
(
PROG_FILES_ROOT
)
+
1
,
"Expected size %d, got %d
\n
"
,
lstrlenA
(
PROG_FILES_ROOT
)
+
1
,
size
);
/* close the INF again */
...
...
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