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 =
static StorageInternalImpl* StorageInternalImpl_Construct(
StorageImpl* ancestorStorage,
DWORD openFlags,
ULONG rootPropertyIndex)
ULONG storageDirEntry)
{
StorageInternalImpl* newStorage;
......@@ -3959,9 +3959,9 @@ static StorageInternalImpl* StorageInternalImpl_Construct(
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;
}
......
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