From 3aa8cdec7b7ea4c6d9717cc8a772f5dd0a502a18 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 12 Nov 2009 15:03:09 -0600 Subject: [PATCH] ole32: Rename property variables in StorageInternalImpl_Construct. --- dlls/ole32/storage32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index fc5872c4a52..3210f55d734 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; }