From 8626281c98617d555f2168ea198ecf4bc7ba816e Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 12 Nov 2009 15:03:09 -0600 Subject: [PATCH 08/12] ole32: Rename property variables in StorageInternalImpl_Construct. --- dlls/ole32/storage32.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index d73f7da..8f1e0a1 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -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; } -- 1.6.3.3