quartz: Remove unneeded address-of operators from function names

Andrew Talbot andrew.talbot at talbotville.com
Sun Jul 6 07:00:35 CDT 2008


Changelog:
    quartz: Remove unneeded address-of operators from function names.

diff --git a/dlls/quartz/main.c b/dlls/quartz/main.c
index b26db74..daefdc5 100644
--- a/dlls/quartz/main.c
+++ b/dlls/quartz/main.c
@@ -75,9 +75,9 @@ static const struct object_creation_info object_creation[] =
     { &CLSID_DSoundRender, DSoundRender_create },
     { &CLSID_AudioRender, DSoundRender_create },
     { &CLSID_AVIDec, AVIDec_create },
-    { &CLSID_SystemClock, &QUARTZ_CreateSystemClock },
-    { &CLSID_ACMWrapper, &ACMWrapper_create },
-    { &CLSID_WAVEParser, &WAVEParser_create }
+    { &CLSID_SystemClock, QUARTZ_CreateSystemClock },
+    { &CLSID_ACMWrapper, ACMWrapper_create },
+    { &CLSID_WAVEParser, WAVEParser_create }
 };
 
 static HRESULT WINAPI



More information about the wine-patches mailing list