ole32: Remove unneeded address-of operators from function name

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


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

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