Commit 8b7b6771 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

ole32: Rename a parameter to better reflect its use.

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