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
c21d65cf
Commit
c21d65cf
authored
Jan 12, 2007
by
Paul Vriens
Committed by
Alexandre Julliard
Jan 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Cast-qual warning fixes.
parent
6c3efd1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
rpc.c
dlls/rpcrt4/tests/rpc.c
+4
-2
No files found.
dlls/rpcrt4/tests/rpc.c
View file @
c21d65cf
...
...
@@ -178,11 +178,13 @@ static void TestDceErrorInqText (void)
static
void
test_rpc_ncacn_ip_tcp
(
void
)
{
RPC_STATUS
status
;
static
unsigned
char
foo
[]
=
"foo"
;
static
unsigned
char
ncacn_ip_tcp
[]
=
"ncacn_ip_tcp"
;
status
=
RpcNetworkIsProtseqValid
(
(
unsigned
char
*
)
"foo"
);
status
=
RpcNetworkIsProtseqValid
(
foo
);
ok
(
status
==
RPC_S_INVALID_RPC_PROTSEQ
,
"return wrong
\n
"
);
status
=
RpcNetworkIsProtseqValid
(
(
unsigned
char
*
)
"ncacn_ip_tcp"
);
status
=
RpcNetworkIsProtseqValid
(
ncacn_ip_tcp
);
ok
(
status
==
RPC_S_OK
,
"return wrong
\n
"
);
}
...
...
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