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

Alexandre Julliard julliard at winehq.org
Mon Jul 7 09:19:17 CDT 2008


Module: wine
Branch: master
Commit: f0d7a2910e4d107932d35e11a3709a0d984ba59d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f0d7a2910e4d107932d35e11a3709a0d984ba59d

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sun Jul  6 13:00:35 2008 +0100

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

---

 dlls/quartz/main.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

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-cvs mailing list