Andrew Talbot : ole32: Remove unneeded address-of operators from function name.

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


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

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

ole32: Remove unneeded address-of operators from function name.

---

 dlls/ole32/storage32.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c
index c3a36d8..a64e595 100644
--- a/dlls/ole32/storage32.c
+++ b/dlls/ole32/storage32.c
@@ -2412,7 +2412,7 @@ static HRESULT StorageImpl_Construct(
    */
   This->base.lpVtbl = &Storage32Impl_Vtbl;
   This->base.pssVtbl = &IPropertySetStorage_Vtbl;
-  This->base.v_destructor = &StorageImpl_Destroy;
+  This->base.v_destructor = StorageImpl_Destroy;
   This->base.openFlags = (openFlags & ~STGM_CREATE);
 
   /*
@@ -4236,7 +4236,7 @@ static StorageInternalImpl* StorageInternalImpl_Construct(
      * Initialize the virtual function table.
      */
     newStorage->base.lpVtbl = &Storage32InternalImpl_Vtbl;
-    newStorage->base.v_destructor = &StorageInternalImpl_Destroy;
+    newStorage->base.v_destructor = StorageInternalImpl_Destroy;
     newStorage->base.openFlags = (openFlags & ~STGM_CREATE);
 
     /*




More information about the wine-cvs mailing list