[PATCH] webservices: Actually use channel type in WsCreateServiceProxyFromTemplate() (Clang)

Nikolay Sivov nsivov at codeweavers.com
Sun May 15 16:18:16 CDT 2016


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 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)
-- 
2.8.1




More information about the wine-patches mailing list