webservices: Actually use channel type in WsCreateServiceProxyFromTemplate() (Clang).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d2fb19d6f7
commit
8b5a9051bf
|
@ -172,7 +172,7 @@ HRESULT WINAPI WsCreateServiceProxyFromTemplate( WS_CHANNEL_TYPE channel_type,
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
if ((hr = create_channel( type, binding, channel_props, channel_props_count, &channel )) != S_OK)
|
||||
if ((hr = create_channel( channel_type, binding, channel_props, channel_props_count, &channel )) != S_OK)
|
||||
return hr;
|
||||
|
||||
if ((hr = create_proxy( channel, properties, count, handle )) != S_OK)
|
||||
|
|
Loading…
Reference in New Issue