ole32: Fix the name of PropertyStorage_WriteWStringToStream().

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-11-28 13:29:19 +01:00 committed by Alexandre Julliard
parent 529d09d353
commit e70de9dbbb
1 changed files with 2 additions and 2 deletions

View File

@ -1738,7 +1738,7 @@ static void PropertyStorage_MakePropertyIdOffset(DWORD propid, DWORD dwOffset,
offsetof(PROPERTYIDOFFSET, dwOffset), dwOffset); offsetof(PROPERTYIDOFFSET, dwOffset), dwOffset);
} }
static inline HRESULT PropertStorage_WriteWStringToStream(IStream *stm, static inline HRESULT PropertyStorage_WriteWStringToStream(IStream *stm,
LPCWSTR str, DWORD len, DWORD *written) LPCWSTR str, DWORD len, DWORD *written)
{ {
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
@ -1788,7 +1788,7 @@ static BOOL PropertyStorage_DictionaryWriter(const void *key,
if (FAILED(c->hr)) if (FAILED(c->hr))
goto end; goto end;
c->bytesWritten += sizeof(DWORD); c->bytesWritten += sizeof(DWORD);
c->hr = PropertStorage_WriteWStringToStream(This->stm, key, keyLen, c->hr = PropertyStorage_WriteWStringToStream(This->stm, key, keyLen,
&count); &count);
if (FAILED(c->hr)) if (FAILED(c->hr))
goto end; goto end;