Commit 3aa8cdec authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: Rename property variables in StorageInternalImpl_Construct.

parent f8ca09c0
...@@ -3933,7 +3933,7 @@ static const IStorageVtbl Storage32InternalImpl_Vtbl = ...@@ -3933,7 +3933,7 @@ static const IStorageVtbl Storage32InternalImpl_Vtbl =
static StorageInternalImpl* StorageInternalImpl_Construct( static StorageInternalImpl* StorageInternalImpl_Construct(
StorageImpl* ancestorStorage, StorageImpl* ancestorStorage,
DWORD openFlags, DWORD openFlags,
ULONG rootPropertyIndex) ULONG storageDirEntry)
{ {
StorageInternalImpl* newStorage; StorageInternalImpl* newStorage;
...@@ -3959,9 +3959,9 @@ static StorageInternalImpl* StorageInternalImpl_Construct( ...@@ -3959,9 +3959,9 @@ static StorageInternalImpl* StorageInternalImpl_Construct(
newStorage->base.ancestorStorage = ancestorStorage; newStorage->base.ancestorStorage = ancestorStorage;
/* /*
* Keep the index of the root property set for this storage, * Keep a reference to the directory entry of this storage
*/ */
newStorage->base.storageDirEntry = rootPropertyIndex; newStorage->base.storageDirEntry = storageDirEntry;
return newStorage; return newStorage;
} }
......
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