From 19be7545e5f326287b3656694b02607b421d63af Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 7 Sep 2006 20:00:30 +0200 Subject: [PATCH] ole32: Fix spelling of a couple of local variables. --- dlls/ole32/stg_stream.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/ole32/stg_stream.c b/dlls/ole32/stg_stream.c index f866491d8ab..48ae9f8afbf 100644 --- a/dlls/ole32/stg_stream.c +++ b/dlls/ole32/stg_stream.c @@ -187,7 +187,7 @@ static void StgStreamImpl_OpenBlockChain( StgStreamImpl* This) { StgProperty curProperty; - BOOL readSucessful; + BOOL readSuccessful; /* * Make sure no old object is left over. @@ -207,11 +207,11 @@ static void StgStreamImpl_OpenBlockChain( /* * Read the information from the property. */ - readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage, + readSuccessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage, This->ownerProperty, &curProperty); - if (readSucessful) + if (readSuccessful) { This->streamSize = curProperty.size; @@ -803,7 +803,7 @@ static HRESULT WINAPI StgStreamImpl_Stat( StgStreamImpl* const This=(StgStreamImpl*)iface; StgProperty curProperty; - BOOL readSucessful; + BOOL readSuccessful; TRACE("%p %p %ld\n", This, pstatstg, grfStatFlag); @@ -817,11 +817,11 @@ static HRESULT WINAPI StgStreamImpl_Stat( /* * Read the information from the property. */ - readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage, + readSuccessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage, This->ownerProperty, &curProperty); - if (readSucessful) + if (readSuccessful) { StorageUtl_CopyPropertyToSTATSTG(pstatstg, &curProperty,