Module: wine Branch: master Commit: 8b5a9051bff83c6e8321920c8c43ca0e76ff6c50 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8b5a9051bff83c6e8321920c8c...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Mon May 16 00:18:16 2016 +0300
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
---
dlls/webservices/proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/webservices/proxy.c b/dlls/webservices/proxy.c index aceaf6b..cd90e36 100644 --- a/dlls/webservices/proxy.c +++ b/dlls/webservices/proxy.c @@ -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)