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
e4c76bb3
Commit
e4c76bb3
authored
Dec 31, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 31, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon/tests: Constify some character strings.
parent
719715c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
protocol.c
dlls/urlmon/tests/protocol.c
+1
-1
url.c
dlls/urlmon/tests/url.c
+1
-1
No files found.
dlls/urlmon/tests/protocol.c
View file @
e4c76bb3
...
...
@@ -1819,7 +1819,7 @@ static HRESULT WINAPI ProtocolEmul_Continue(IInternetProtocolEx *iface,
case
1
:
{
IServiceProvider
*
service_provider
;
IHttpNegotiate
*
http_negotiate
;
static
WCHAR
header
[]
=
{
'?'
,
0
};
static
const
WCHAR
header
[]
=
{
'?'
,
0
};
hres
=
IInternetProtocolSink_QueryInterface
(
binding_sink
,
&
IID_IServiceProvider
,
(
void
**
)
&
service_provider
);
...
...
dlls/urlmon/tests/url.c
View file @
e4c76bb3
...
...
@@ -967,7 +967,7 @@ static HRESULT WINAPI Protocol_Continue(IInternetProtocol *iface,
case
1
:
{
IServiceProvider
*
service_provider
;
IHttpNegotiate
*
http_negotiate
;
static
WCHAR
header
[]
=
{
'?'
,
0
};
static
const
WCHAR
header
[]
=
{
'?'
,
0
};
hres
=
IInternetProtocolSink_QueryInterface
(
protocol_sink
,
&
IID_IServiceProvider
,
(
void
**
)
&
service_provider
);
...
...
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