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:
Nikolay Sivov 2016-05-16 00:18:16 +03:00 committed by Alexandre Julliard
parent d2fb19d6f7
commit 8b5a9051bf

View file

@ -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)