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
08e53fc0
Commit
08e53fc0
authored
Feb 16, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon/tests: Avoid size_t in a trace.
parent
ba7cbccf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
misc.c
dlls/urlmon/tests/misc.c
+1
-2
No files found.
dlls/urlmon/tests/misc.c
View file @
08e53fc0
...
...
@@ -962,8 +962,7 @@ static void test_NameSpace(void)
hres
=
CoInternetParseUrl
(
url8
,
PARSE_SECURITY_URL
,
0
,
buf
,
sizeof
(
buf
)
/
sizeof
(
WCHAR
),
&
size
,
0
);
ok
(
hres
==
S_OK
,
"CoInternetParseUrl failed: %08x
\n
"
,
hres
);
ok
(
size
==
sizeof
(
url1
)
/
sizeof
(
WCHAR
),
"Size = %d, expected %d
\n
"
,
size
,
sizeof
(
url1
)
/
sizeof
(
WCHAR
));
ok
(
size
==
sizeof
(
url1
)
/
sizeof
(
WCHAR
),
"Size = %d
\n
"
,
size
);
if
(
size
==
sizeof
(
url1
)
/
sizeof
(
WCHAR
))
ok
(
!
memcmp
(
buf
,
url1
,
sizeof
(
url1
)),
"Encoded url = %s
\n
"
,
wine_dbgstr_w
(
buf
));
...
...
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