ole32: Rename a parameter to better reflect its use.

This commit is contained in:
Huw Davies 2009-05-29 16:51:22 +01:00 committed by Alexandre Julliard
parent 6ed93bf824
commit 8b7b67712f
1 changed files with 3 additions and 3 deletions

View File

@ -2395,7 +2395,7 @@ static HRESULT StorageImpl_Construct(
ILockBytes* pLkbyt, ILockBytes* pLkbyt,
DWORD openFlags, DWORD openFlags,
BOOL fileBased, BOOL fileBased,
BOOL fileCreate) BOOL create)
{ {
HRESULT hr = S_OK; HRESULT hr = S_OK;
StgProperty currentProperty; StgProperty currentProperty;
@ -2457,7 +2457,7 @@ static HRESULT StorageImpl_Construct(
if (This->bigBlockFile == 0) if (This->bigBlockFile == 0)
return E_FAIL; return E_FAIL;
if (fileCreate) if (create)
{ {
ULARGE_INTEGER size; ULARGE_INTEGER size;
BYTE bigBlockBuffer[BIG_BLOCK_SIZE]; BYTE bigBlockBuffer[BIG_BLOCK_SIZE];
@ -2538,7 +2538,7 @@ static HRESULT StorageImpl_Construct(
/* /*
* Write the root property (memory only) * Write the root property (memory only)
*/ */
if (fileCreate) if (create)
{ {
StgProperty rootProp; StgProperty rootProp;
/* /*