urlmon/tests: Constify some character strings.
This commit is contained in:
parent
719715c774
commit
e4c76bb3ca
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue