amstream: Avoid using the LPUNKNOWN COM iface type.

Michael Stefaniuc mstefani at redhat.de
Mon Jul 18 04:20:57 CDT 2016


Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
---
It is lonely in amstream...


 dlls/amstream/main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/amstream/main.c b/dlls/amstream/main.c
index 1149584..2cadf9c 100644
--- a/dlls/amstream/main.c
+++ b/dlls/amstream/main.c
@@ -117,8 +117,8 @@ static HRESULT WINAPI AMCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter
 {
     IClassFactoryImpl *This = impl_from_IClassFactory(iface);
     HRESULT hres;
-    LPUNKNOWN punk;
-    
+    IUnknown *punk;
+
     TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
 
     *ppobj = NULL;
-- 
2.4.11



More information about the wine-patches mailing list