Commit 8b5a9051 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

webservices: Actually use channel type in WsCreateServiceProxyFromTemplate() (Clang).

parent d2fb19d6
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment