Commit 82e23af8 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

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

parent fa076870
...@@ -2412,7 +2412,7 @@ static HRESULT StorageImpl_Construct( ...@@ -2412,7 +2412,7 @@ static HRESULT StorageImpl_Construct(
*/ */
This->base.lpVtbl = &Storage32Impl_Vtbl; This->base.lpVtbl = &Storage32Impl_Vtbl;
This->base.pssVtbl = &IPropertySetStorage_Vtbl; This->base.pssVtbl = &IPropertySetStorage_Vtbl;
This->base.v_destructor = &StorageImpl_Destroy; This->base.v_destructor = StorageImpl_Destroy;
This->base.openFlags = (openFlags & ~STGM_CREATE); This->base.openFlags = (openFlags & ~STGM_CREATE);
/* /*
...@@ -4236,7 +4236,7 @@ static StorageInternalImpl* StorageInternalImpl_Construct( ...@@ -4236,7 +4236,7 @@ static StorageInternalImpl* StorageInternalImpl_Construct(
* Initialize the virtual function table. * Initialize the virtual function table.
*/ */
newStorage->base.lpVtbl = &Storage32InternalImpl_Vtbl; newStorage->base.lpVtbl = &Storage32InternalImpl_Vtbl;
newStorage->base.v_destructor = &StorageInternalImpl_Destroy; newStorage->base.v_destructor = StorageInternalImpl_Destroy;
newStorage->base.openFlags = (openFlags & ~STGM_CREATE); newStorage->base.openFlags = (openFlags & ~STGM_CREATE);
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment