Francois Gouget : ole32: Fix spelling of a couple of local variables.
Module: wine Branch: master Commit: 19be7545e5f326287b3656694b02607b421d63af URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=19be7545e5f326287b365669... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Sep 7 20:00:30 2006 +0200 ole32: Fix spelling of a couple of local variables. --- dlls/ole32/stg_stream.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/ole32/stg_stream.c b/dlls/ole32/stg_stream.c index f866491..48ae9f8 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,
participants (1)
-
Alexandre Julliard